From 4cc6f744c626a92c15f0403d28283f97243db5fe Mon Sep 17 00:00:00 2001 From: Thijmen Date: Tue, 30 Apr 2024 21:58:42 +0200 Subject: [PATCH 1/9] fix to address Picnic API update, specifically new url for search endpoint which returns a new format --- python_picnic_api/client.py | 17 +++++++++-------- python_picnic_api/helper.py | 28 ++++++++++++++++++++++++++-- tests/test_client.py | 6 +++--- 3 files changed, 38 insertions(+), 13 deletions(-) diff --git a/python_picnic_api/client.py b/python_picnic_api/client.py index 83ab1ec..0415588 100644 --- a/python_picnic_api/client.py +++ b/python_picnic_api/client.py @@ -1,6 +1,6 @@ from hashlib import md5 -from .helper import _tree_generator, _url_generator, _get_category_name +from .helper import _tree_generator, _url_generator, _get_category_name, _extract_search_results from .session import PicnicAPISession, PicnicAuthError DEFAULT_URL = "https://storefront-prod.{}.picnicinternational.com/api/{}" @@ -23,7 +23,7 @@ def __init__( # Login if not authenticated if not self.session.authenticated and username and password: self.login(username, password) - + self.high_level_categories = None def initialize_high_level_categories(self): @@ -36,8 +36,8 @@ def _get(self, path: str, add_picnic_headers=False): # Make the request, add special picnic headers if needed headers = { - "x-picnic-agent": "30100;1.15.183-14941;", - "x-picnic-did": "00DE6414C744E7CB" + "x-picnic-agent": "30100;1.15.232-15154;", + "x-picnic-did": "3C417201548B2E3B" } if add_picnic_headers else None response = self.session.get(url, headers=headers).json() @@ -77,8 +77,9 @@ def get_user(self): return self._get("/user") def search(self, term: str): - path = "/search?search_term=" + term - return self._get(path) + path = f"/pages/search-page-results?search_term={term}" + raw_results = self._get(path, add_picnic_headers=True) + return _extract_search_results(raw_results) def get_lists(self, list_id: str = None): if list_id: @@ -101,7 +102,7 @@ def get_sublist(self, list_id: str, sublist_id: str) -> list: def get_cart(self): return self._get("/cart") - + def get_article(self, article_id: str, add_category_name=False): path = "/articles/" + article_id article = self._get(path) @@ -111,7 +112,7 @@ def get_article(self, article_id: str, add_category_name=False): category_name=_get_category_name(article['category_link'], self.high_level_categories) ) return article - + def get_article_category(self, article_id: str): path = "/articles/" + article_id + "/category" return self._get(path) diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index b28fb1e..0fc7dce 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -1,3 +1,4 @@ +import json import re # prefix components: @@ -45,8 +46,8 @@ def _get_category_id_from_link(category_link: str) -> str: return result else: return None - - + + def _get_category_name(category_link: str, categories: list) -> str: category_id = _get_category_id_from_link(category_link) if category_id: @@ -76,3 +77,26 @@ def get_image(id: str, size="regular", suffix="webp"): ) return f"{IMAGE_BASE_URL}/{id}/{size}.{suffix}" + +def _extract_search_results(raw_results: dict) -> list: + search_results = [] + sole_article_id_pattern = re.compile(r"sole_article_id=([0-9]+)") + + # Iterate over the nested structure of raw_results + for child1 in raw_results.get("body", {}).get("children", []): + for child2 in child1.get("children", []): + content = child2.get("content") + if content and "selling_unit" in content: + # Extracting the sole_article_id from the serialized JSON of pml + sole_article_ids = sole_article_id_pattern.findall( + json.dumps(child2.get("pml", {})) + ) + if sole_article_ids: + sole_article_id = sole_article_ids[0] + # Create and append the result entry + result_entry = { + **content["selling_unit"], + "sole_article_id": sole_article_id, + } + search_results.append(result_entry) + return search_results diff --git a/tests/test_client.py b/tests/test_client.py index 359082c..975a699 100644 --- a/tests/test_client.py +++ b/tests/test_client.py @@ -6,7 +6,7 @@ from python_picnic_api.session import PicnicAuthError PICNIC_HEADERS = { - "x-picnic-agent": "30100;1.15.77-10293", + "x-picnic-agent": "30100;1.15.232-15154", "x-picnic-did": "3C417201548B2E3B", } @@ -34,7 +34,7 @@ def test_login_credentials(self): PicnicAPI(username='test@test.nl', password='test') self.session_mock().post.assert_called_with( self.expected_base_url + '/user/login', - json={'key': 'test@test.nl', 'secret': '098f6bcd4621d373cade4e832627b4f6', "client_id": 1} + json={'key': 'test@test.nl', 'secret': '098f6bcd4621d373cade4e832627b4f6', "client_id": 30100} ) def test_login_auth_token(self): @@ -83,7 +83,7 @@ def test_get_user(self): def test_search(self): self.client.search("test-product") self.session_mock().get.assert_called_with( - self.expected_base_url + "/search?search_term=test-product", headers=None + self.expected_base_url + "/pages/search-page-results?search_term=test-product", headers=PICNIC_HEADERS ) def test_get_lists(self): From d09382e43936fe0613662e34e4024778cc8264fb Mon Sep 17 00:00:00 2001 From: Thijmen Date: Mon, 6 May 2024 22:34:38 +0200 Subject: [PATCH 2/9] Previous commit unnecessarily excluded a number of search results. This version seems to yield all expected search results. --- python_picnic_api/helper.py | 33 +++++++++++---------------------- 1 file changed, 11 insertions(+), 22 deletions(-) diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index 0fc7dce..eff6e41 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -11,6 +11,7 @@ IMAGE_SIZES = ["small", "medium", "regular", "large", "extra-large"] IMAGE_BASE_URL = "https://storefront-prod.nl.picnicinternational.com/static/images" + def _tree_generator(response: list, prefix: str = ""): """A recursive tree generator, will yield a visual tree structure line by line @@ -25,7 +26,7 @@ def _tree_generator(response: list, prefix: str = ""): pre = f"{item['unit_quantity']} " after = "" if "display_price" in item.keys(): - after = f" €{int(item['display_price'])/100.0:.2f}" + after = f" €{int(item['display_price']) / 100.0:.2f}" yield prefix + pointer + pre + item["name"] + after if "items" in item: # extend the prefix and recurse: @@ -59,6 +60,7 @@ def _get_category_name(category_link: str, categories: list) -> str: else: return None + def get_recipe_image(id: str, size="regular"): sizes = IMAGE_SIZES + ["1250x1250"] assert size in sizes, "size must be one of: " + ", ".join(sizes) @@ -73,30 +75,17 @@ def get_image(id: str, size="regular", suffix="webp"): sizes = IMAGE_SIZES + [f"tile-{size}" for size in IMAGE_SIZES] assert size in sizes, ( - "size must be one of: " + ", ".join(sizes) + "size must be one of: " + ", ".join(sizes) ) return f"{IMAGE_BASE_URL}/{id}/{size}.{suffix}" def _extract_search_results(raw_results: dict) -> list: - search_results = [] - sole_article_id_pattern = re.compile(r"sole_article_id=([0-9]+)") - - # Iterate over the nested structure of raw_results - for child1 in raw_results.get("body", {}).get("children", []): - for child2 in child1.get("children", []): - content = child2.get("content") + parsed_results = [] + for parent in raw_results.get("body", {}).get("children", []): + for child in parent.get("children", []): + content = child.get("content") if content and "selling_unit" in content: - # Extracting the sole_article_id from the serialized JSON of pml - sole_article_ids = sole_article_id_pattern.findall( - json.dumps(child2.get("pml", {})) - ) - if sole_article_ids: - sole_article_id = sole_article_ids[0] - # Create and append the result entry - result_entry = { - **content["selling_unit"], - "sole_article_id": sole_article_id, - } - search_results.append(result_entry) - return search_results + parsed_results.append(content["selling_unit"]) + + return parsed_results From 9dc1f50961010c5e4cdf2d7f7054f6c95e5f5244 Mon Sep 17 00:00:00 2001 From: Thijmen Date: Tue, 7 May 2024 18:50:43 +0200 Subject: [PATCH 3/9] Revert "Previous commit unnecessarily excluded a number of search results. This version seems to yield all expected search results." This reverts commit d09382e43936fe0613662e34e4024778cc8264fb. --- python_picnic_api/helper.py | 33 ++++++++++++++++++++++----------- 1 file changed, 22 insertions(+), 11 deletions(-) diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index eff6e41..0fc7dce 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -11,7 +11,6 @@ IMAGE_SIZES = ["small", "medium", "regular", "large", "extra-large"] IMAGE_BASE_URL = "https://storefront-prod.nl.picnicinternational.com/static/images" - def _tree_generator(response: list, prefix: str = ""): """A recursive tree generator, will yield a visual tree structure line by line @@ -26,7 +25,7 @@ def _tree_generator(response: list, prefix: str = ""): pre = f"{item['unit_quantity']} " after = "" if "display_price" in item.keys(): - after = f" €{int(item['display_price']) / 100.0:.2f}" + after = f" €{int(item['display_price'])/100.0:.2f}" yield prefix + pointer + pre + item["name"] + after if "items" in item: # extend the prefix and recurse: @@ -60,7 +59,6 @@ def _get_category_name(category_link: str, categories: list) -> str: else: return None - def get_recipe_image(id: str, size="regular"): sizes = IMAGE_SIZES + ["1250x1250"] assert size in sizes, "size must be one of: " + ", ".join(sizes) @@ -75,17 +73,30 @@ def get_image(id: str, size="regular", suffix="webp"): sizes = IMAGE_SIZES + [f"tile-{size}" for size in IMAGE_SIZES] assert size in sizes, ( - "size must be one of: " + ", ".join(sizes) + "size must be one of: " + ", ".join(sizes) ) return f"{IMAGE_BASE_URL}/{id}/{size}.{suffix}" def _extract_search_results(raw_results: dict) -> list: - parsed_results = [] - for parent in raw_results.get("body", {}).get("children", []): - for child in parent.get("children", []): - content = child.get("content") - if content and "selling_unit" in content: - parsed_results.append(content["selling_unit"]) + search_results = [] + sole_article_id_pattern = re.compile(r"sole_article_id=([0-9]+)") - return parsed_results + # Iterate over the nested structure of raw_results + for child1 in raw_results.get("body", {}).get("children", []): + for child2 in child1.get("children", []): + content = child2.get("content") + if content and "selling_unit" in content: + # Extracting the sole_article_id from the serialized JSON of pml + sole_article_ids = sole_article_id_pattern.findall( + json.dumps(child2.get("pml", {})) + ) + if sole_article_ids: + sole_article_id = sole_article_ids[0] + # Create and append the result entry + result_entry = { + **content["selling_unit"], + "sole_article_id": sole_article_id, + } + search_results.append(result_entry) + return search_results From 7e0796716d8383d7dc3e6c13eb89585be0e1de01 Mon Sep 17 00:00:00 2001 From: Thijmen Date: Tue, 7 May 2024 19:01:18 +0200 Subject: [PATCH 4/9] Some results were missing from search due to the "if sole_article_ids" condition. This commit includes items that don't have a sole article id, and just sets the sole article id to None. Also includes some minor reformatting and refactor (updated type hint Optional for functions that can return a None). --- python_picnic_api/helper.py | 61 +++++++++++++++++++------------------ 1 file changed, 32 insertions(+), 29 deletions(-) diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index 0fc7dce..618e897 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -1,5 +1,6 @@ import json import re +from typing import List, Dict, Any, Optional # prefix components: space = " " @@ -11,6 +12,9 @@ IMAGE_SIZES = ["small", "medium", "regular", "large", "extra-large"] IMAGE_BASE_URL = "https://storefront-prod.nl.picnicinternational.com/static/images" +SOLE_ARTICLE_ID_PATTERN = re.compile(r"sole_article_id=([0-9]+)") + + def _tree_generator(response: list, prefix: str = ""): """A recursive tree generator, will yield a visual tree structure line by line @@ -38,8 +42,8 @@ def _url_generator(url: str, country_code: str, api_version: str): return url.format(country_code.lower(), api_version) -def _get_category_id_from_link(category_link: str) -> str: - pattern = r'categories/(\d+)' +def _get_category_id_from_link(category_link: str) -> Optional[str]: + pattern = r"categories/(\d+)" first_number = re.search(pattern, category_link) if first_number: result = str(first_number.group(1)) @@ -48,10 +52,12 @@ def _get_category_id_from_link(category_link: str) -> str: return None -def _get_category_name(category_link: str, categories: list) -> str: +def _get_category_name(category_link: str, categories: list) -> Optional[str]: category_id = _get_category_id_from_link(category_link) if category_id: - category = next((item for item in categories if item["id"] == category_id), None) + category = next( + (item for item in categories if item["id"] == category_id), None + ) if category: return category["name"] else: @@ -59,6 +65,7 @@ def _get_category_name(category_link: str, categories: list) -> str: else: return None + def get_recipe_image(id: str, size="regular"): sizes = IMAGE_SIZES + ["1250x1250"] assert size in sizes, "size must be one of: " + ", ".join(sizes) @@ -66,37 +73,33 @@ def get_recipe_image(id: str, size="regular"): def get_image(id: str, size="regular", suffix="webp"): - assert "tile" in size if suffix == "webp" else True, ( - "webp format only supports tile sizes" - ) + assert ( + "tile" in size if suffix == "webp" else True + ), "webp format only supports tile sizes" assert suffix in ["webp", "png"], "suffix must be webp or png" sizes = IMAGE_SIZES + [f"tile-{size}" for size in IMAGE_SIZES] - assert size in sizes, ( - "size must be one of: " + ", ".join(sizes) - ) + assert size in sizes, "size must be one of: " + ", ".join(sizes) return f"{IMAGE_BASE_URL}/{id}/{size}.{suffix}" -def _extract_search_results(raw_results: dict) -> list: +def _extract_search_results(raw_results: Dict[str, Any]) -> List[Dict[str, Any]]: + """Extract search results from a nested dictionary structure returned by Picnic search.""" search_results = [] - sole_article_id_pattern = re.compile(r"sole_article_id=([0-9]+)") - - # Iterate over the nested structure of raw_results - for child1 in raw_results.get("body", {}).get("children", []): - for child2 in child1.get("children", []): - content = child2.get("content") - if content and "selling_unit" in content: - # Extracting the sole_article_id from the serialized JSON of pml - sole_article_ids = sole_article_id_pattern.findall( - json.dumps(child2.get("pml", {})) + + for section in raw_results.get("body", {}).get("children", []): + for item in section.get("children", []): + content = item.get("content", {}) + if "selling_unit" in content: + sole_article_ids = SOLE_ARTICLE_ID_PATTERN.findall( + json.dumps(item.get("pml", {})) ) - if sole_article_ids: - sole_article_id = sole_article_ids[0] - # Create and append the result entry - result_entry = { - **content["selling_unit"], - "sole_article_id": sole_article_id, - } - search_results.append(result_entry) + sole_article_id = sole_article_ids[0] if sole_article_ids else None + + result_entry = { + **content["selling_unit"], + "sole_article_id": sole_article_id, + } + search_results.append(result_entry) + return search_results From 2612a2dc5a6e0da5d4db0c8e01a2d3eb226f85e7 Mon Sep 17 00:00:00 2001 From: Maarten Paul Date: Mon, 23 Sep 2024 12:21:56 +0200 Subject: [PATCH 5/9] Fixing search to work with latest picnic API --- dummy.py | 4 + python_picnic_api/helper.py | 31 +- raw_results.json | 156539 +++++++++++++++++++++++++++++++++ test.py | 43 + 4 files changed, 156616 insertions(+), 1 deletion(-) create mode 100644 dummy.py create mode 100644 raw_results.json create mode 100644 test.py diff --git a/dummy.py b/dummy.py new file mode 100644 index 0000000..2f5ad88 --- /dev/null +++ b/dummy.py @@ -0,0 +1,4 @@ +from python_picnic_api.client import PicnicAPI +picnic = PicnicAPI(username='fam.paul@outlook.com', password='Nan0f00d!', country_code="NL") +results = picnic.search("melk") +print(results) \ No newline at end of file diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index 618e897..8cf290c 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -12,7 +12,7 @@ IMAGE_SIZES = ["small", "medium", "regular", "large", "extra-large"] IMAGE_BASE_URL = "https://storefront-prod.nl.picnicinternational.com/static/images" -SOLE_ARTICLE_ID_PATTERN = re.compile(r"sole_article_id=([0-9]+)") +SOLE_ARTICLE_ID_PATTERN = re.compile(r'"sole_article_id":"(\w+)"') def _tree_generator(response: list, prefix: str = ""): @@ -103,3 +103,32 @@ def _extract_search_results(raw_results: Dict[str, Any]) -> List[Dict[str, Any]] search_results.append(result_entry) return search_results + + +def _extract_search_results(raw_results, max_items: int = 10): + """Extract search results from the nested dictionary structure returned by Picnic search. + Number of max items can be defined to reduce excessive nested search""" + search_results = [] + + def find_articles(node): + if len(search_results) >= max_items: + return + + content = node.get("content", {}) + if content.get("type") == "SELLING_UNIT_TILE" and "sellingUnit" in content: + selling_unit = content["sellingUnit"] + sole_article_ids = SOLE_ARTICLE_ID_PATTERN.findall(json.dumps(node)) + sole_article_id = sole_article_ids[0] if sole_article_ids else None + result_entry = { + **selling_unit, + "sole_article_id": sole_article_id, + } + search_results.append(result_entry) + + for child in node.get("children", []): + find_articles(child) + + body = raw_results.get("body", {}) + find_articles(body.get("child", {})) + + return [{"items": search_results}] diff --git a/raw_results.json b/raw_results.json new file mode 100644 index 0000000..ddf67cb --- /dev/null +++ b/raw_results.json @@ -0,0 +1,156539 @@ +{ + "id": "search-page-results", + "presentation": { + "type": "FULL_SCREEN", + "style": { + "backgroundColor": "#ffffff" + } + }, + "body": { + "type": "STATE_BOUNDARY", + "id": "GlobalState", + "state": {}, + "child": { + "id": "root", + "analytics": { + "contexts": [ + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "size": { + "crossAxis": "SCREEN_WIDTH" + }, + "layout": { + "type": "FLOW", + "axis": "VERTICAL", + "overflow": "HIDDEN" + }, + "type": "BLOCK", + "children": [ + { + "id": "search-page-header", + "size": { + "crossAxis": "SCREEN_WIDTH", + "mainAxis": 48 + }, + "layout": { + "type": "FLOW", + "axis": "HORIZONTAL", + "padding": { + "top": 4, + "bottom": 12, + "left": 12, + "right": 12 + }, + "spacing": { + "mainAxis": 8 + } + }, + "type": "BLOCK", + "children": [ + { + "type": "PML", + "id": "search-header-sorting-button", + "size": { + "crossAxis": 50, + "mainAxis": 36, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=search-sort-options-root,presentation-mode=MODAL_OVER_CONTEXT,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&term=kaas&sorting_options_ids=RELEVANCE&sorting_options_ids=PRICE&sorting_options_ids=PRICE_PER_KILO&sorting_options_ids=CONTENT&sorting_options_names=Relevant%20voor%20jou&sorting_options_names=Laagste%20prijs&sorting_options_names=Laagste%20prijs%20per%20kilo&sorting_options_names=Kleinste%20verpakking&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "width": 16, + "height": 16, + "iconKey": "swap", + "color": "#333333", + "type": "ICON" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-recipe-toggle", + "size": { + "crossAxis": 50, + "mainAxis": 100, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&is_recipe=true&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 8, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 20, + "borderRadius": 5, + "backgroundColor": "#4B8505", + "padding": { + "left": 4, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "distribution": "CENTER", + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#ffffff)118#(#ffffff)", + "type": "RICH_TEXT" + } + ] + } + }, + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Recepten#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-particularities.Actie", + "size": { + "crossAxis": 50, + "mainAxis": 76, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=particularities.Actie&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 8, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 20, + "borderRadius": 5, + "backgroundColor": "#fbd92b", + "padding": { + "left": 4, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "distribution": "CENTER", + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)%#(#000000)", + "type": "RICH_TEXT" + } + ] + } + }, + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Actie#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-brand.Picnic", + "size": { + "crossAxis": 50, + "mainAxis": 84, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=brand.Picnic&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Picnic#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-shape.Plakken", + "size": { + "crossAxis": 50, + "mainAxis": 92, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=shape.Plakken&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Plakken#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-shape.Stuk", + "size": { + "crossAxis": 50, + "mainAxis": 68, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=shape.Stuk&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Stuk#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-article_type.Jong", + "size": { + "crossAxis": 50, + "mainAxis": 68, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Jong&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Jong#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-article_type.Jong belegen", + "size": { + "crossAxis": 50, + "mainAxis": 132, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Jong%20belegen&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Jong belegen#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-article_type.Belegen", + "size": { + "crossAxis": 50, + "mainAxis": 92, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Belegen&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Belegen#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-article_type.Oud", + "size": { + "crossAxis": 50, + "mainAxis": 60, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Oud&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Oud#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + }, + { + "type": "PML", + "id": "search-header-filter-group.Borrelkaas", + "size": { + "crossAxis": 50, + "mainAxis": 116, + "isMainAxisEstimated": true + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "method": "REPLACE", + "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=group.Borrelkaas&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" + }, + "type": "TOUCHABLE", + "child": { + "borderRadius": 8, + "height": 32, + "backgroundColor": "#f8f5f2", + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "alignment": "CENTER", + "padding": { + "left": 12, + "right": 12 + }, + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#000000)Borrelkaas#(#000000)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + } + ] + }, + { + "id": "search-results-selling-units-section", + "layout": { + "type": "FLOW", + "axis": "VERTICAL", + "spacing": { + "mainAxis": 4, + "crossAxis": 0 + }, + "padding": { + "left": 8, + "right": 8, + "top": 4, + "bottom": 4 + } + }, + "size": { + "crossAxis": "12g", + "mainAxis": "CONTAINER_HEIGHT - 48" + }, + "type": "BLOCK", + "children": [ + { + "id": "search-result-section", + "layout": { + "type": "FLOW", + "axis": "VERTICAL" + }, + "size": { + "crossAxis": "12g" + }, + "type": "BLOCK", + "children": [ + { + "id": "structured-selling-unit-search-result", + "layout": { + "type": "FLOW", + "axis": "VERTICAL", + "spacing": { + "mainAxis": 4, + "crossAxis": 4 + } + }, + "size": { + "crossAxis": "12g" + }, + "type": "BLOCK", + "children": [ + { + "id": "rfy-group-header", + "layout": { + "type": "FLOW", + "axis": "VERTICAL" + }, + "size": { + "crossAxis": "12g" + }, + "type": "BLOCK", + "children": [ + { + "type": "PML", + "id": "header-Opnieuw bestellen", + "size": { + "mainAxis": 34, + "crossAxis": "12g" + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "accessible": true, + "width": "100%", + "padding": { + "bottom": 6, + "left": 4, + "right": 12, + "top": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "distribution": "END", + "type": "STACK", + "children": [ + { + "textAlignment": "START", + "numberOfLines": 1, + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#333333)Opnieuw bestellen#(#333333)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + ] + }, + { + "type": "PML", + "id": "selling-unit-s1070765-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 1 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1070765" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Opnieuw bestellen - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1070765", + "name": "Jong belegen kaas 48+", + "decorators": [], + "display_price": 579, + "image_id": "d3bb1a9afa6214848c1eb3e853e89514cecc5d5d5b9830b4f67fe0c9fdebbc44", + "max_count": 99, + "unit_quantity": "Plakken (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "4e3ae8b9b9a3ed543d0e3654bddb9a2b3b445dbb2d8c8e92688449f2170ca423" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070765" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "4e3ae8b9b9a3ed543d0e3654bddb9a2b3b445dbb2d8c8e92688449f2170ca423" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 579, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (400 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1070765", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1070765", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070765" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070765" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1070765", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 5 € 79 cent, Plakken (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070765" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070765" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070765" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1066068-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 1 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1066068" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Opnieuw bestellen - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1066068", + "name": "Leerdammer Lightlife kaas 35+", + "decorators": [], + "display_price": 255, + "image_id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b", + "max_count": 50, + "unit_quantity": "2 x Plakken (160 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1066068" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)42% minder vet#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Lightlife 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Leerdammer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 6, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 2, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "alignment": "CENTER", + "distribution": "START", + "padding": { + "bottom": 2 + }, + "spacing": 2, + "type": "STACK", + "children": [ + { + "textAlignment": "END", + "textAttributes": { + "size": 12, + "weight": "SEMIBOLD", + "color": "#333333" + }, + "markdown": "#(#787570)2#(#787570)", + "type": "RICH_TEXT" + }, + { + "iconKey": "crossSmall", + "width": 6, + "height": 6, + "color": "#787570", + "type": "ICON" + } + ] + }, + { + "price": 255, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "2 x Plakken (160 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1066068", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1066068", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1066068" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1066068" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1066068", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Lightlife kaas 35+, van Leerdammer, voor, 5 € 10 cent, 2 x Plakken (160 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1066068" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1066068" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Lightlife kaas 35+, van Leerdammer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1066068" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014842-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 2 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014842" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Opnieuw bestellen - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014842", + "name": "Picnic belegen kaas 48+", + "decorators": [], + "display_price": 645, + "image_id": "6860e3759a639ca6cabc467b99f5f167218e922b72b074ff64b5f9faf1690793", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d58d52dba4e2a65cac08471fb115cbfcf477c83c7f80f5e121e7088f1c2c2dde" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014842" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/12fc85de2058c976406688937eef341ae0ccb65815f68b4b0400f208f0901dd9" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d58d52dba4e2a65cac08471fb115cbfcf477c83c7f80f5e121e7088f1c2c2dde" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 645, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014842", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014842", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014842" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014842" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014842", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 6 € 45 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014842" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014842" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014842" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "id": "more-group-header", + "layout": { + "type": "FLOW", + "axis": "VERTICAL" + }, + "size": { + "crossAxis": "12g" + }, + "type": "BLOCK", + "children": [ + { + "type": "PML", + "id": "header-Alle resultaten", + "size": { + "mainAxis": 34, + "crossAxis": "12g" + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "accessible": true, + "width": "100%", + "padding": { + "bottom": 6, + "left": 4, + "right": 12, + "top": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "distribution": "END", + "type": "STACK", + "children": [ + { + "textAlignment": "START", + "numberOfLines": 1, + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#333333)Alle resultaten#(#333333)", + "type": "RICH_TEXT" + } + ] + } + } + } + } + ] + }, + { + "type": "PML", + "id": "selling-unit-s1010832-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 3 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010832" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010832", + "name": "Picnic jong belegen kaas 48+", + "decorators": [], + "display_price": 309, + "image_id": "1cf4b07bfb6e6c2be76749690801678ea3164b00a10e05071642bd4ff5d2ab54", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c08d32615cce17a6eb14315dd997ff1410bf8d766ac458f4b72e848508e2dcac" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010832" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/5854f4ec66105bcdea4e7484bae8e926e1112b3db663ee7ae7b480f425f1aab3" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c08d32615cce17a6eb14315dd997ff1410bf8d766ac458f4b72e848508e2dcac" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 309, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010832", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010832", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010832" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010832" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010832", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 3 € 9 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010832" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010832" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010832" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011288-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 3 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011288" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011288", + "name": "Picnic Bio jong belegen 48+", + "decorators": [], + "display_price": 379, + "image_id": "0b56fec9393c2fbc347105a906476b5bc7e261644880149eb9faf3a032a567b6", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "495a9fba10b29ebb28d1866f57c6fc59c6dd7cb52618e506986446d06bc56fca" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011288" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/94f5b53158cbe1ebc97763527537dc72ae65fb70d059a5b292c125dfcb40c8aa" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "495a9fba10b29ebb28d1866f57c6fc59c6dd7cb52618e506986446d06bc56fca" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 379, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011288", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011288", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011288" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011288" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011288", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen 48+, van Picnic, voor, 3 € 79 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011288" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011288" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011288" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011483-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 4 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011483" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011483", + "name": "Picnic jong belegen kaas 48+", + "decorators": [], + "display_price": 399, + "image_id": "a4ad2f3df58c5d8db650bc25b29e6b5f4c9beaf74d8597d238541e11bc7aec10", + "max_count": 50, + "unit_quantity": "Plakken (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "10ae7efaa8539481c37b3de6c68c7ea4a73c98d85e36c26293e2ed03d3f7e82a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011483" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "10ae7efaa8539481c37b3de6c68c7ea4a73c98d85e36c26293e2ed03d3f7e82a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (400 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011483", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011483", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011483" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011483" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011483", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen, voor, 3 € 99 cent, Plakken (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011483" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011483" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011483" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010813-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 4 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010813" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010813", + "name": "Picnic jonge kaas 48+", + "decorators": [], + "display_price": 295, + "image_id": "7322565586016e6a07f413a313ab85ab197bcfa3c9b11653ff9f5787d4c05390", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7011627fd1f62cc1dd1b41cc7ef130200322f211161c4c21631965300b692a97" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010813" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/318537159ce60c457ad3e17b07c1d9e92cc30160c8be0e382c703b8e73e0dd55" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7011627fd1f62cc1dd1b41cc7ef130200322f211161c4c21631965300b692a97" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 295, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010813", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010813", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010813" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010813" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010813", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Picnic, voor, 2 € 95 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010813" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010813" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010813" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1070764-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 5 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1070764" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1070764", + "name": "Jonge kaas 48+", + "decorators": [], + "display_price": 529, + "image_id": "8c564571d61ea73de1a3c37cc5c45e8f9159080c65ec654912af436a245d19d0", + "max_count": 99, + "unit_quantity": "Plakken (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3d11b2d6994a548767fb5303869b398cae16c815690178b4df1a63412865fc04" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070764" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3d11b2d6994a548767fb5303869b398cae16c815690178b4df1a63412865fc04" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 529, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (400 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1070764", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1070764", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070764" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070764" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1070764", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Picnic, voor, 5 € 29 cent, Plakken (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070764" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070764" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070764" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011269-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 5 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011269" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011269", + "name": "Picnic Bio jong 48+", + "decorators": [], + "display_price": 335, + "image_id": "888126fa4e34d0d41288f3d351ac91174516724a91e20e1229060719f1e4aa45", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b44d567d6b66d21670cb542e193d2091d1450badf3edf3816340da35b3068fa0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011269" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/729f1ecb261cab8622b5ed5d51b39cffd37fa1d3c5fc96115aad1a2f28f8b80e" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b44d567d6b66d21670cb542e193d2091d1450badf3edf3816340da35b3068fa0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Licht pittig en vol#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 335, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011269", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011269", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011269" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011269" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011269", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong 48+, van Picnic, voor, 3 € 35 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011269" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011269" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011269" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1112263-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 6 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1112263" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1112263", + "name": "Picnic tostikaas jong 48+", + "decorators": [], + "display_price": 509, + "image_id": "fcaa105ac8b000713a699e021f3aae8130be469faa9a2c46436f49d070a735cb", + "max_count": 99, + "unit_quantity": "Plakken (500g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "86bc687f627788808a9b21de52bbc2b0c1e125b171712792705fd190a4f86c7d" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1112263" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "86bc687f627788808a9b21de52bbc2b0c1e125b171712792705fd190a4f86c7d" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "15% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Tostikaas jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 509, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 599, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (500g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1112263", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1112263", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1112263" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1112263" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1112263", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Tostikaas jong 48+, van Picnic, van, 5 € 99 cent, voor, 5 € 9 cent, Plakken (500g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1112263" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1112263" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Tostikaas jong 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1112263" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010848-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 6 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010848" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010848", + "name": "Picnic belegen kaas 48+", + "decorators": [], + "display_price": 339, + "image_id": "6bddb4ac57044a010bc0e38798263b2f0a975f5b372a45644bd845539e5ba34f", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "fe4436c38152b689a5ce78a7b663537f28cdba79138297934abb552477465cbe" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010848" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/a3edee81347232ecd3369db945a931f004e79d419aa3571ec44eb99a12ca4295" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "fe4436c38152b689a5ce78a7b663537f28cdba79138297934abb552477465cbe" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 339, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010848", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010848", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010848" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010848" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010848", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 3 € 39 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010848" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010848" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010848" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1070766-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 7 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1070766" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1070766", + "name": "Belegen kaas 48+", + "decorators": [], + "display_price": 599, + "image_id": "666cc13b2410a27694e3e9cad16bfec3cbbd67173c41908865afc03db25f16fb", + "max_count": 99, + "unit_quantity": "Plakken (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "0968549e3ead61a9aa5b3f735fc25e8e98add74b2633778b8459c5507d560074" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070766" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "0968549e3ead61a9aa5b3f735fc25e8e98add74b2633778b8459c5507d560074" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 599, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (400 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1070766", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1070766", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070766" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070766" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1070766", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 5 € 99 cent, Plakken (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1070766" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070766" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1070766" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011306-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 7 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011306" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011306", + "name": "Picnic Bio belegen 48+", + "decorators": [], + "display_price": 369, + "image_id": "3c7033f96e708dfc496d3d80d929837ef8316adac6dd329eaabe617adb61d72e", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "0e66612456e0d1952aa530c03f3ef6aacbfdc498a0656200336df0a7fcf05d4d" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011306" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/dd153a7526d7add0259dde466a4fa2c3f74275c5b3c7d33b3ffc4dc3e0279222" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "0e66612456e0d1952aa530c03f3ef6aacbfdc498a0656200336df0a7fcf05d4d" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Licht romig en licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 369, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011306", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011306", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011306" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011306" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011306", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen 48+, van Picnic, voor, 3 € 69 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011306" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011306" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011306" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010992-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 8 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010992" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010992", + "name": "Picnic jong belegen kaas 30+", + "decorators": [], + "display_price": 305, + "image_id": "32bbdf9e740450d2aa16b0d63a45885c40db3a5ed7d421d1f04ebaac5ecc14a8", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e49c46c05ded1f93243512915be08a6995ebe27ae782420667da3df50b370d11" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010992" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/36974572e8b66f1d34321648361ff8ca5ff7957cbecd4e7ddac38c309f7b08c2" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e49c46c05ded1f93243512915be08a6995ebe27ae782420667da3df50b370d11" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 305, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010992", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010992", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010992" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010992" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010992", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Prijskampioen, voor, 3 € 5 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010992" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010992" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010992" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010955-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 8 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010955" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010955", + "name": "Picnic jonge kaas 20+", + "decorators": [], + "display_price": 319, + "image_id": "40fe1821c5031370e7715fb1b129f82e87589d189875ce156399b0c5ef211764", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e41186de2b847a12820fafc4ba78475e0dd8d86ac6240f17e928b9768c493a2c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010955" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/ed69e79bcdcf16603f127844abf046557c56e13f434d96f87585ff5e087db595" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e41186de2b847a12820fafc4ba78475e0dd8d86ac6240f17e928b9768c493a2c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong 20+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010955", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010955", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010955" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010955" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010955", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 20+, van Picnic, voor, 3 € 19 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010955" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010955" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 20+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010955" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010900-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 9 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010900" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010900", + "name": "Picnic oude kaas 48+", + "decorators": [], + "display_price": 415, + "image_id": "45b282054770fb71952bba7cec571c1f917e898128361769e6f662f59bb1e2ac", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f199163c977b79c18f10d87d52952dc7cf03fc9a9839d1d7a8ea19a5bb9e1be9" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010900" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/36fde4306f82c52ded44d02cb92b21e56c179a1381f12cd79a1922cf98e62808" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f199163c977b79c18f10d87d52952dc7cf03fc9a9839d1d7a8ea19a5bb9e1be9" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 415, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010900", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010900", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010900" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010900" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010900", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Picnic, voor, 4 € 15 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010900" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010900" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010900" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010918-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 9 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010918" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010918", + "name": "Picnic jong belegen komijnekaas 48+", + "decorators": [], + "display_price": 339, + "image_id": "790ab77e1916855e0e38f23acae494d34f313ef71edcbd1701c8773ea65eeb73", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f84139cde2618261b28381091e173072488a298f4a91bf9f7d4208857f9ce5f7" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010918" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/8215bbec8cb91f2a6421442523b3bdf9dc77caf025d5bbec4076205d49a8d603" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f84139cde2618261b28381091e173072488a298f4a91bf9f7d4208857f9ce5f7" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen komijn#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 339, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010918", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010918", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010918" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010918" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010918", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic, voor, 3 € 39 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010918" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010918" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010918" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010884-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 10 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010884" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010884", + "name": "Picnic extra belegen kaas 48+", + "decorators": [], + "display_price": 375, + "image_id": "b222f979065fa864c488cc430b2c4b38a89958b0d8401ff2dc8a9e6111e0bb42", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e181ec0ce4f3c1751357a36ee56dd72f5ff041ddd9772ec2f0e0854d2155f9e0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010884" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/2db4250237dabe738f8b09ef6256b48ae88617e9672aeb3b2e00b583e3335acf" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e181ec0ce4f3c1751357a36ee56dd72f5ff041ddd9772ec2f0e0854d2155f9e0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Tijdelijke verpakking#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 375, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010884", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010884", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010884" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010884" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010884", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Picnic, voor, 3 € 75 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010884" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010884" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010884" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011010-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 10 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011010" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011010", + "name": "Picnic jong belegen geitenkaas 50+", + "decorators": [], + "display_price": 479, + "image_id": "700772d80df8fd20d7fc270965d8f45305c01bf82ed441f6c96c50e970daf9ff", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "321c310d38483939c76306b82792e49fe0c569f8b9c4a2d09e1f5e3ca2ba3313" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011010" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/41073d26cab67f88da181e579f87b2b8d40d1dbec59a6873f65b4f82134a8f44" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "321c310d38483939c76306b82792e49fe0c569f8b9c4a2d09e1f5e3ca2ba3313" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen geit#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 479, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011010", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011010", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011010" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011010" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011010", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen geitenkaas 50+, van Picnic, voor, 4 € 79 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011010" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011010" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen geitenkaas 50+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011010" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011533-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 11 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011533" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011533", + "name": "Beemster jong belegen kaas 48+", + "decorators": [], + "display_price": 329, + "image_id": "9cf8f9721faee231265c4d58502629ca0ac70eff10506cc6e06952295d473bd6", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "bf7f5cf1f73e6ebd5d9e85cdf3d4157b7c61ae79b873eafd457479af2fef59c2" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011533" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "bf7f5cf1f73e6ebd5d9e85cdf3d4157b7c61ae79b873eafd457479af2fef59c2" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Smeuïg en mild#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 329, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011533", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011533", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011533" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011533" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011533", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011533" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011533" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011533" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1049054-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 11 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1049054" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1049054", + "name": "Beemster jong belegen 48+ voordeelverpakking", + "decorators": [], + "display_price": 489, + "image_id": "b452943a1d4b12afae1ec5139b74fee077ad9bdc76f74e44fd667f3db31a3f14", + "max_count": 99, + "unit_quantity": "Plakken (250 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "528220b096e6b1fe259d124ee1154d4fc5dbd386e22f315aadff0e126bafa891" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049054" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "528220b096e6b1fe259d124ee1154d4fc5dbd386e22f315aadff0e126bafa891" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Smeuïg en mild#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 489, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (250 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1049054", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1049054", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049054" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049054" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1049054", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen 48+ voordeelverpakking, van Beemster, voor, 4 € 89 cent, Plakken (250 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049054" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049054" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen 48+ voordeelverpakking, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049054" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011513-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 12 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011513" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011513", + "name": "Beemster jonge kaas 48+", + "decorators": [], + "display_price": 319, + "image_id": "62d85908417c00cc252164f7e55b698fa079a7d71e51e39b4216c9c0edd02425", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f1c7576fd68c7480e327744e44b3423fa4fa8de3ce474de61142fc79c8f4446c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011513" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f1c7576fd68c7480e327744e44b3423fa4fa8de3ce474de61142fc79c8f4446c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011513", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011513", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011513" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011513" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011513", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Beemster, voor, 3 € 19 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011513" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011513" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011513" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1049053-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 12 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1049053" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1049053", + "name": "Beemster jong 48+ voordeelverpakking", + "decorators": [], + "display_price": 479, + "image_id": "930884f25a68e1e0ba9efff27eeae73914f6747abe844d950525573ca669bfd6", + "max_count": 99, + "unit_quantity": "Plakken (250 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "a9f118fe9bde3afae7b2b811d599bb658ca76e3c6b1e2e28c67fd74b504ca8cb" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049053" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "a9f118fe9bde3afae7b2b811d599bb658ca76e3c6b1e2e28c67fd74b504ca8cb" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 479, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (250 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1049053", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1049053", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049053" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049053" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1049053", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong 48+ voordeelverpakking, van Beemster, voor, 4 € 79 cent, Plakken (250 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049053" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049053" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong 48+ voordeelverpakking, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049053" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011473-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 13 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011473" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011473", + "name": "Beemster belegen kaas 48+", + "decorators": [], + "display_price": 329, + "image_id": "233995e38c9df888b4b9aae680a1d0d14d9110e6356e7d19cded39292d7fae6f", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "50644e1f46951f6ea9886fe8e1b98bb35019617ea36e433c7f63ab3d03a503bd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011473" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "50644e1f46951f6ea9886fe8e1b98bb35019617ea36e433c7f63ab3d03a503bd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 329, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011473", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011473", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011473" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011473" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011473", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011473" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011473" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011473" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1049055-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 13 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1049055" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1049055", + "name": "Beemster belegen 48+ voordeelverpakking", + "decorators": [], + "display_price": 499, + "image_id": "922fac9e98d19e05f5ff493aec298b5ef5a13a1a94417b0dc4fb3738239e0102", + "max_count": 99, + "unit_quantity": "Plakken (250 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1cdb3f121b8e6bb0f795ba2b1b18347367b25c12bbd9bbf51aada29b84532313" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049055" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1cdb3f121b8e6bb0f795ba2b1b18347367b25c12bbd9bbf51aada29b84532313" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 499, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (250 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1049055", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1049055", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049055" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049055" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1049055", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen 48+ voordeelverpakking, van Beemster, voor, 4 € 99 cent, Plakken (250 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1049055" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049055" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen 48+ voordeelverpakking, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1049055" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010575-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 14 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010575" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010575", + "name": "Beemster oude kaas 30+", + "decorators": [], + "display_price": 365, + "image_id": "a42196c67be0e8e191767adfc7b84f7385be3c9bc38cee51adf3ad8036b4e0b1", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "46f9e635cdb920404e1a2449089af08239460c2d06f43d4047915f43090e3900" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010575" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "46f9e635cdb920404e1a2449089af08239460c2d06f43d4047915f43090e3900" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Rijk en krachtig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 365, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010575", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010575", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010575" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010575" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010575", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 30+, van Beemster, voor, 3 € 65 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010575" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010575" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 30+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010575" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011551-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 14 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011551" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011551", + "name": "Beemster belegen kaas 30+", + "decorators": [], + "display_price": 329, + "image_id": "8a97067f89d3f693d8ef627ad4350f02314b6e0fc64422675d76df9c17319e91", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f14c77879e2e955dc7b852318944bf8d71504b30cf52ac8732da9dbb92a046c8" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011551" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f14c77879e2e955dc7b852318944bf8d71504b30cf52ac8732da9dbb92a046c8" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Mild en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 329, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011551", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011551", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011551" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011551" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011551", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011551" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011551" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011551" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011431-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 15 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011431" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011431", + "name": "Beemster jong belegen kaas 30+", + "decorators": [], + "display_price": 335, + "image_id": "ba146013a858403b6102762a79954cbce8300a0ee59855907b643a38f67a896f", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b67a88d50cdbd3b09535f96437a32a05fc66f1a6787f7f5e30c5fb41225829b7" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011431" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b67a88d50cdbd3b09535f96437a32a05fc66f1a6787f7f5e30c5fb41225829b7" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en mild#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 335, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011431", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011431", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011431" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011431" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011431", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Beemster, voor, 3 € 35 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011431" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011431" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011431" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010597-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 15 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010597" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010597", + "name": "Beemster oude kaas 48+", + "decorators": [], + "display_price": 359, + "image_id": "9c677db9730939c289d7510bbf57384dde9a036aa233defef5a359996383980b", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b012d9707ce8a0070e5d9acdfa586661b33f17103aad83f729a84b939e9438f2" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010597" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b012d9707ce8a0070e5d9acdfa586661b33f17103aad83f729a84b939e9438f2" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Rijk en pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 359, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010597", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010597", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010597" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010597" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010597", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Beemster, voor, 3 € 59 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010597" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010597" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010597" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011387-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 16 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011387" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011387", + "name": "Beemster extra belegen kaas 48+", + "decorators": [], + "display_price": 349, + "image_id": "5c64688d3e20a06062d292dd6940eb90f7df9d51ba37c2f662c3dc9bae8987cb", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "514db691198e1f5ab0bbec09e1abd0507af34a230ff80af007b1c4d7c280183a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011387" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "514db691198e1f5ab0bbec09e1abd0507af34a230ff80af007b1c4d7c280183a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Beemster#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 349, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011387", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011387", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011387" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011387" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011387", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Beemster, voor, 3 € 49 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011387" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011387" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Beemster", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011387" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017839-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 16 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017839" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017839", + "name": "Maaslander jong belegen kaas 50+", + "decorators": [], + "display_price": 299, + "image_id": "dcd26bda01af3dd07beba9fcbdaec9cae78c98ba9e54ce42714c5f916d0c7de4", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "31e3af848dd210694c98d3353f6368b14995ba6de50a5f9bef095f0723d42277" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017839" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "31e3af848dd210694c98d3353f6368b14995ba6de50a5f9bef095f0723d42277" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Volromig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Maaslander#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 299, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017839", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017839", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017839" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017839" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017839", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 50+, van Maaslander, voor, 2 € 99 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017839" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017839" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 50+, van Maaslander", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017839" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017774-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 17 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017774" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017774", + "name": "Maaslander jonge kaas", + "decorators": [], + "display_price": 289, + "image_id": "9b99cb3e94eda28e3008104c45e7f97d719a86d674db5c42d6d087dce7ac29de", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "de6825d29f19be85f3a101507573b11ada7c067c48c9f2250cedb7ae753b98ce" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017774" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "de6825d29f19be85f3a101507573b11ada7c067c48c9f2250cedb7ae753b98ce" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Maaslander#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 289, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017774", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017774", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017774" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017774" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017774", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas, van Maaslander, voor, 2 € 89 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017774" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017774" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas, van Maaslander", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017774" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013842-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 17 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013842" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013842", + "name": "Maaslander belegen kaas", + "decorators": [], + "display_price": 319, + "image_id": "eeaca751717606798b1f7a32983e5d85229b53e2159a1b1063aba3b0ec7a2e27", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5cebaa53de08acfe5654f5966996e6a6dd0504cdd2261160bc7ae3c79ff16ec0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013842" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5cebaa53de08acfe5654f5966996e6a6dd0504cdd2261160bc7ae3c79ff16ec0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Maaslander#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013842", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013842", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013842" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013842" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013842", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas, van Maaslander, voor, 3 € 19 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013842" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013842" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas, van Maaslander", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013842" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011642-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 18 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011642" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011642", + "name": "Maaslander jong belegen geitenkaas", + "decorators": [], + "display_price": 385, + "image_id": "2587fe4da82418b08f37e9f4a20563fd7a9d216ee176ae5939bba3087ef74cc3", + "max_count": 50, + "unit_quantity": "Plakken (140 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5d46aec866890aafe8e26056b97e87ade15c7fc0efebca71ace0b09e58f21444" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011642" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5d46aec866890aafe8e26056b97e87ade15c7fc0efebca71ace0b09e58f21444" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en smeuïg#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Maaslander#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 385, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (140 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011642", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011642", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011642" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011642" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011642", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen geitenkaas, van Maaslander, voor, 3 € 85 cent, Plakken (140 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011642" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011642" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen geitenkaas, van Maaslander", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011642" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1067234-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 18 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1067234" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1067234", + "name": "Milner belegen kaas 30+", + "decorators": [], + "display_price": 325, + "image_id": "b407b7d5ad10e0deccca44b24111c8be3150944d106c95a268c23154e151f96f", + "max_count": 99, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b9defc483bf07b112278f92dad49dd07ffbe69bd7bc0447330ed29e04c6f99bc" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067234" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b9defc483bf07b112278f92dad49dd07ffbe69bd7bc0447330ed29e04c6f99bc" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 325, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1067234", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1067234", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067234" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067234" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1067234", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Milner, voor, 3 € 25 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067234" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067234" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067234" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004825-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 19 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004825" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004825", + "name": "Milner extra belegen kaas 30+", + "decorators": [], + "display_price": 319, + "image_id": "eb470da01e2b416e5682a21228d089ed2d3edfa6953befcfbe22dd8520f847c3", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "884e510c3fd76371ee62ae5dccb6224dfeb12290f74de14ff72de4910b5f2454" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004825" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "884e510c3fd76371ee62ae5dccb6224dfeb12290f74de14ff72de4910b5f2454" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004825", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004825", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004825" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004825" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004825", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 30+, van Milner, voor, 3 € 19 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004825" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004825" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004825" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1002879-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 19 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1002879" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1002879", + "name": "Milner jong belegen kaas 30+", + "decorators": [], + "display_price": 309, + "image_id": "49790aaa3826dd1b279d32635a05ea13c2b9faa0b8f645b3eb2798a476cae0c9", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "84cfa9107fcd6e59c782aab0bc1774e2456715d97af2183ec65c5d2a44d295e0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002879" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "84cfa9107fcd6e59c782aab0bc1774e2456715d97af2183ec65c5d2a44d295e0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 309, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1002879", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1002879", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002879" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002879" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1002879", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 3 € 9 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002879" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002879" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002879" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011235-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 20 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011235" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011235", + "name": "Milner oude kaas 30+", + "decorators": [], + "display_price": 415, + "image_id": "03eb046b7aed735a076a9048e2eb8b46aa4ed52acbbc109b3475b03826b32bd9", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "39d61106abb0a274c87818f0869f912e4c86455f047120f0867d389a0449f804" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011235" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "39d61106abb0a274c87818f0869f912e4c86455f047120f0867d389a0449f804" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 415, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011235", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011235", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011235" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011235" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011235", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 30+, van Milner, voor, 4 € 15 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011235" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011235" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011235" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011751-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 20 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011751" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011751", + "name": "Milner komijnekaas 30+", + "decorators": [], + "display_price": 325, + "image_id": "bdf8b4856fa8f1690b3f5d26c81757392f259d03459b3958016a969efe154953", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8668f7e9314dbb6e673dee9e1b2a43df0d22e2feb76aa1e25a3d7af83ac3ad37" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011751" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8668f7e9314dbb6e673dee9e1b2a43df0d22e2feb76aa1e25a3d7af83ac3ad37" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Komijnekaas 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 325, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011751", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011751", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011751" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011751" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011751", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Komijnekaas 30+, van Milner, voor, 3 € 25 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011751" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011751" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Komijnekaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011751" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011839-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 21 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011839" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011839", + "name": "Milner jonge kaas 30+", + "decorators": [], + "display_price": 289, + "image_id": "54a123d9accf08b680c7df07e57e4c3808b7ea0a8b38ba11b04e0a0ed7161963", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "9672791a13e9dfd3639af65081f7eff4da538fabea4a7d1a76d148094f6fe272" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011839" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "9672791a13e9dfd3639af65081f7eff4da538fabea4a7d1a76d148094f6fe272" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 289, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011839", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011839", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011839" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011839" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011839", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 30+, van Milner, voor, 2 € 89 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011839" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011839" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011839" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017375-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 21 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017375" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017375", + "name": "Milner jong belegen kaas 30+", + "decorators": [], + "display_price": 469, + "image_id": "a422e4657a01761492d12d4acd2b35da0a9ea4e5aa26f897a32e5c5aa3749cc2", + "max_count": 50, + "unit_quantity": "Plakken (250 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "42c5f62fd130ce7c43671a605deb4e095698bb26ccaa140e6ee466fcb66b7eb7" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017375" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "42c5f62fd130ce7c43671a605deb4e095698bb26ccaa140e6ee466fcb66b7eb7" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 469, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (250 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017375", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017375", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017375" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017375" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017375", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 4 € 69 cent, Plakken (250 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017375" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017375" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017375" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1075331-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 22 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1075331" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1075331", + "name": "Milner jonge kaas 30+", + "decorators": [], + "display_price": 449, + "image_id": "47846ddecf0463dfe028832cb304d201777189f8c05f5da50005f0e2bc403d92", + "max_count": 99, + "unit_quantity": "Plakken (250 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1a6154b4e6e0e7237784990e0c123e3e283d6a9515baeb80cc8d3fda4ac4c1a3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1075331" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1a6154b4e6e0e7237784990e0c123e3e283d6a9515baeb80cc8d3fda4ac4c1a3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 449, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (250 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1075331", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1075331", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1075331" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1075331" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1075331", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 30+, van Milner, voor, 4 € 49 cent, Plakken (250 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1075331" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1075331" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1075331" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003797-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 22 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003797" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003797", + "name": "Vergeer Gouda jong belegen kaas", + "decorators": [], + "display_price": 399, + "image_id": "20e0be8d8d1127245452dcadab18bb8ea791fd6d3ab83e5934fb27c1a3e4060d", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e7b2ad3f0e723c650ea993170d0294c022d72e76182062a1c796cb07d75f6147" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003797" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e7b2ad3f0e723c650ea993170d0294c022d72e76182062a1c796cb07d75f6147" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Natuurlijk gerijpt#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003797", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003797", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003797" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003797" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003797", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda jong belegen kaas, van Vergeer, voor, 3 € 99 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003797" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003797" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda jong belegen kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003797" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003849-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 23 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003849" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003849", + "name": "Vergeer Gouda jonge kaas", + "decorators": [], + "display_price": 369, + "image_id": "1f8ffb57144b756c8b5fbd8a3f193d87f8f8099cddcdc8bfb9a54c73d0567120", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3383cb17d41ec676260d76e9d64cc9aa34e564065899fdb645c2fba815fec13b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003849" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3383cb17d41ec676260d76e9d64cc9aa34e564065899fdb645c2fba815fec13b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Mild en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 369, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003849", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003849", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003849" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003849" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003849", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda jonge kaas, van Vergeer, voor, 3 € 69 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003849" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003849" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda jonge kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003849" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003874-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 23 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003874" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003874", + "name": "Vergeer Gouda belegen kaas", + "decorators": [], + "display_price": 429, + "image_id": "8dfe913cd1df72914c9445eae98e294413013de0686b370faa430c40c455ad9c", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e8a51565d6559166ceea6c2a2c3b91196e8e630c295a5888b13c914628c79678" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003874" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e8a51565d6559166ceea6c2a2c3b91196e8e630c295a5888b13c914628c79678" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Volvet en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 429, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003874", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003874", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003874" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003874" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003874", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda belegen kaas, van Vergeer, voor, 4 € 29 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003874" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003874" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda belegen kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003874" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003823-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 24 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003823" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003823", + "name": "Vergeer Gouda oude kaas", + "decorators": [], + "display_price": 499, + "image_id": "0300178862355a396a9fdfb622f4e291c4f424f916146d8df90cfe72893207ca", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8c4c4653e89aba5f68155ce6a886682a0321724c36b8833b705135d4104cf632" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003823" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8c4c4653e89aba5f68155ce6a886682a0321724c36b8833b705135d4104cf632" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 499, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003823", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003823", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003823" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003823" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003823", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda oude kaas, van Vergeer, voor, 4 € 99 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003823" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003823" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda oude kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003823" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017469-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 24 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017469" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017469", + "name": "De Kaaskamer jong belegen kaas 48+", + "decorators": [], + "display_price": 599, + "image_id": "54fdf9cf8ed3f7bfdfdf88dbb51c22b68bf7ad42871b63d6d9ae68f7a0c4e7af", + "max_count": 50, + "unit_quantity": "Plakken (350 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "db2e01192ea86803d77da2d28749d38b0097f58d1b5b6c18885066bb13634962" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017469" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "db2e01192ea86803d77da2d28749d38b0097f58d1b5b6c18885066bb13634962" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 599, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (350 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017469", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017469", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017469" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017469" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017469", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 99 cent, Plakken (350 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017469" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017469" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017469" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009151-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 25 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009151" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009151", + "name": "De Kaaskamer jong belegen kaas 48+", + "decorators": [], + "display_price": 419, + "image_id": "6563b604ff5a62f51be14498cff96629f4be6d32ca103ff331eb47ae077df77b", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "746ee3afc17fc08d77c9e31a73a8b63a911ff5eb2d27a357654c1b8b45db4aa0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009151" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "746ee3afc17fc08d77c9e31a73a8b63a911ff5eb2d27a357654c1b8b45db4aa0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 419, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009151", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009151", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009151" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009151" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009151", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 19 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009151" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009151" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009151" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010229-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 25 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010229" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010229", + "name": "De Kaaskamer boerenkaas jong belegen 48+", + "decorators": [], + "display_price": 435, + "image_id": "a12e22492524e02da7ea3f6d6ef70265b7f36cf2b6e702c310d9ed7ea8f7f869", + "max_count": 50, + "unit_quantity": "Plakken (225 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "4d3c57b78a1dcb05820e27b68294a8e722946541883815c4753d21aaf4d59674" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010229" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "4d3c57b78a1dcb05820e27b68294a8e722946541883815c4753d21aaf4d59674" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010229&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 435, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (225 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010229", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010229", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010229" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010229" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010229", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer, voor, 4 € 35 cent, Plakken (225 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010229&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010229" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010229" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010229" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100903-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 26 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100903" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100903", + "name": "De Kaaskamer bio jong belegen 50+", + "decorators": [], + "display_price": 435, + "image_id": "63d57d154bf9038b115d8f281dea9ee64d28565ed3856a699b7af79f9fd33296", + "max_count": 99, + "unit_quantity": "Plakken (220 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "de07d34cf6b265a58d703f1a612c7710c6217e0e287b79ced75fa6371dbbda51" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100903" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "de07d34cf6b265a58d703f1a612c7710c6217e0e287b79ced75fa6371dbbda51" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100903&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Licht pittig en volromig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 435, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (220 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100903", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100903", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100903" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100903" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100903", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen 50+, van De Kaaskamer, voor, 4 € 35 cent, Plakken (220 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100903&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100903" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100903" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100903" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014937-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 26 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014937" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014937", + "name": "De Kaaskamer jonge kaas 48+", + "decorators": [], + "display_price": 569, + "image_id": "6cdedddb5e830765b7d97a17ad8880f6bff42eb0aa91bda91b973ae73840c12b", + "max_count": 50, + "unit_quantity": "Plakken (350 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "03e0f541f9036f52d1aa04db08107c816fd1a4603a848892f31a9f3af84498ea" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014937" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "03e0f541f9036f52d1aa04db08107c816fd1a4603a848892f31a9f3af84498ea" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 569, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Plakken (350 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014937", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014937", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014937" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014937" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014937", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 69 cent, Plakken (350 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014937" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014937" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014937" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009108-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 27 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009108" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009108", + "name": "De Kaaskamer jonge kaas 48+", + "decorators": [], + "display_price": 399, + "image_id": "c636885bfc4db191b2c34a32830a7dd2a010a60b5b5ae3b164bc1a82ce58280a", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "fa1ce72865a5e32f4b4e197dc9bd7d628c34deade961f8e917af33f5c79a46d0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009108" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "fa1ce72865a5e32f4b4e197dc9bd7d628c34deade961f8e917af33f5c79a46d0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009108", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009108", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009108" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009108" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009108", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 3 € 99 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009108" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009108" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009108" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016296-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 27 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016296" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016296", + "name": "De Kaaskamer belegen kaas 48+", + "decorators": [], + "display_price": 665, + "image_id": "987ae3fa0a2f910c0059db6bbf832068ba76bdd60e08d798a3c1615b06e2ccbf", + "max_count": 50, + "unit_quantity": "Plakken (340 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5c1239e0b87194fb2cfab3e46e66a8c69d80c5bc396219e7938ec08e6826be21" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016296" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5c1239e0b87194fb2cfab3e46e66a8c69d80c5bc396219e7938ec08e6826be21" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 665, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (340 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016296", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016296", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016296" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016296" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016296", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 6 € 65 cent, Plakken (340 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016296" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016296" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016296" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009171-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 28 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009171" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009171", + "name": "De Kaaskamer belegen kaas 48+", + "decorators": [], + "display_price": 465, + "image_id": "23b62b220622045894b1907df30596f08e12a40594fe4a113dd8a860411dd5c5", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "deddca340bdcde8b793eb1b758b7ed44064ad6bd8445478be6e16fb36a7df955" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009171" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "deddca340bdcde8b793eb1b758b7ed44064ad6bd8445478be6e16fb36a7df955" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 465, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009171", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009171", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009171" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009171" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009171", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 65 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009171" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009171" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009171" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1018188-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 28 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1018188" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1018188", + "name": "De Kaaskamer boerenkaas belegen 48+", + "decorators": [], + "display_price": 449, + "image_id": "b08d3d6749cf13a2f5b60b15e3ab1b75594cacff201b0c40a2d0b0611228d495", + "max_count": 50, + "unit_quantity": "Plakken (225 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b4883fb28264483344527773c8ec2cf73cc86990734eb874cc2be43190036348" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1018188" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b4883fb28264483344527773c8ec2cf73cc86990734eb874cc2be43190036348" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1018188&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 449, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (225 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1018188", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1018188", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1018188" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1018188" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1018188", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer, voor, 4 € 49 cent, Plakken (225 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1018188&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1018188" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1018188" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1018188" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1001810-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 29 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1001810" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1001810", + "name": "De Kaaskamer gatenkaas jong belegen 45+", + "decorators": [], + "display_price": 419, + "image_id": "d78cd927ca0a69f16cc58616ab17e3e526a2eaed8ca5c7abb653d2a5bc08ab9b", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8feb5f01a256305f002bd7484e76ec7bd90409865729e411ac704f2986ebe452" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001810" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8feb5f01a256305f002bd7484e76ec7bd90409865729e411ac704f2986ebe452" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1001810&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hollandse specialiteit#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gatenkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 419, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1001810", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1001810", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001810" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001810" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1001810", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gatenkaas jong belegen 45+, van De Kaaskamer, voor, 4 € 19 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1001810&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001810" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001810" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gatenkaas jong belegen 45+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001810" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100904-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 29 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100904" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100904", + "name": "De Kaaskamer bio belegen 50+", + "decorators": [], + "display_price": 439, + "image_id": "e3e3a6fb104a8cf693dee5405b302baab73e5731d2063338a02f73e34f48c57a", + "max_count": 99, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d2fa35d8d8b7d035f059871fb2a662b54ec2dc573826c5ac267cb177043288ba" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100904" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d2fa35d8d8b7d035f059871fb2a662b54ec2dc573826c5ac267cb177043288ba" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100904&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig en licht brokkelig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 439, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100904", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100904", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100904" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100904" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100904", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen 50+, van De Kaaskamer, voor, 4 € 39 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100904&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100904" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100904" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100904" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017976-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 30 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017976" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017976", + "name": "De Kaaskamer jong belegen kaas 35+", + "decorators": [], + "display_price": 389, + "image_id": "78aec97228a1310d7bda4dfdb129151cf8c5cfc3ad16dd17b322dc4a75192735", + "max_count": 50, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f265800d9f23d40d32dfe7fb503b3cbbb2ce92bfcc8d0faee45c64b832519e81" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017976" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f265800d9f23d40d32dfe7fb503b3cbbb2ce92bfcc8d0faee45c64b832519e81" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 35+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 389, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017976", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017976", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017976" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017976" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017976", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 3 € 89 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017976" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017976" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017976" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100906-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 30 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100906" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100906", + "name": "De Kaaskamer PanPan komijn 20+", + "decorators": [], + "display_price": 439, + "image_id": "9b458c918c6fd92c11e38188d1f2a54918015897cf90916bcd6b0333111461c2", + "max_count": 99, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "0252d2705b236f3110611f101fadde8c97fc144c33d2b135f5b17703940c5ed0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100906" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "0252d2705b236f3110611f101fadde8c97fc144c33d2b135f5b17703940c5ed0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100906&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Milde komijnekaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Panpan 20+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 439, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100906", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100906", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100906" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100906" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100906", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "PanPan komijn 20+, van De Kaaskamer, voor, 4 € 39 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100906&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100906" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100906" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "PanPan komijn 20+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100906" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009215-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 31 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009215" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009215", + "name": "De Kaaskamer overjarige kaas 48+", + "decorators": [], + "display_price": 529, + "image_id": "4a48f762be73854e2aef5af8444249ab21f27613bf16df3cde6a24ca07e352f4", + "max_count": 50, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c779ac44bd29fce27a4852415cc05f2149b1b884c5ad25028b1b7976cd4ade46" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009215" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c779ac44bd29fce27a4852415cc05f2149b1b884c5ad25028b1b7976cd4ade46" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Overjarig#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 529, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009215", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009215", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009215" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009215" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009215", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 29 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009215" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009215" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009215" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009281-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 31 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009281" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009281", + "name": "De Kaaskamer oude kaas 48+", + "decorators": [], + "display_price": 505, + "image_id": "d3ca5ed62b83c3650d1e639014d3819ab8b1da19353a00560e3974142a9fda5d", + "max_count": 50, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "20b8a7492cb2698d41409ee426ae9245722a0cbe31a79753370b6e4b472c517e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009281" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "20b8a7492cb2698d41409ee426ae9245722a0cbe31a79753370b6e4b472c517e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 505, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009281", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009281", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009281" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009281" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009281", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 5 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009281" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009281" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009281" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100902-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 32 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100902" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100902", + "name": "De Kaaskamer boerenkaas oud 48+", + "decorators": [], + "display_price": 495, + "image_id": "798cca75afb154b51411194fb0a9f6d5a04442150ed2dafe9ed6dac6af34d412", + "max_count": 99, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "bdd6210e7aa6cc8b089fd9c7df4614717d4a3a6ca1532f356acfedb02383ebc8" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100902" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "bdd6210e7aa6cc8b089fd9c7df4614717d4a3a6ca1532f356acfedb02383ebc8" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100902&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 495, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100902", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100902", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100902" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100902" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100902", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas oud 48+, van De Kaaskamer, voor, 4 € 95 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100902&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100902" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100902" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas oud 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100902" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100905-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 32 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100905" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100905", + "name": "De Kaaskamer bio oud 50+", + "decorators": [], + "display_price": 459, + "image_id": "e6291ef9c6d204388b1619c72ee49fd78cec0b087278cb5b64dcb83319133db8", + "max_count": 99, + "unit_quantity": "Plakken (180 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "eeb1af033da534e91825c5995874800d4082d9967b25a874e37225cffa4e1d01" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100905" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "eeb1af033da534e91825c5995874800d4082d9967b25a874e37225cffa4e1d01" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100905&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Volromig en licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 459, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (180 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100905", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100905", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100905" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100905" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100905", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio oud 50+, van De Kaaskamer, voor, 4 € 59 cent, Plakken (180 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100905&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100905" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100905" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio oud 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100905" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1005928-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 33 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1005928" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1005928", + "name": "De Kaaskamer jonge komijnekaas 48+", + "decorators": [], + "display_price": 435, + "image_id": "f486d731b99331f4a4df0f173b43e9b23665bf2cfd048ba0bfc9d0b5ae5b30e2", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b3e71cbfd0c45462bb1f1ba5acdaa3cc9ff244e9d745dfd765a9271094c006e6" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005928" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b3e71cbfd0c45462bb1f1ba5acdaa3cc9ff244e9d745dfd765a9271094c006e6" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jonge komijn#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 435, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1005928", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1005928", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005928" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005928" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1005928", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 35 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005928" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005928" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge komijnekaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005928" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009259-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 33 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009259" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009259", + "name": "De Kaaskamer belegen komijnekaas 48+", + "decorators": [], + "display_price": 485, + "image_id": "cf9f577ce525b10b3ff9644228d101845c26f9ab3cfc9f6e81a05061fc506c24", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e52972f11735e3f1fc22788833cf2b400da52690f14def955c8a2c1f50aff112" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009259" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e52972f11735e3f1fc22788833cf2b400da52690f14def955c8a2c1f50aff112" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen komijn#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 485, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009259", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009259", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009259" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009259" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009259", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 85 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009259" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009259" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen komijnekaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009259" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004377-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 34 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004377" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004377", + "name": "De Kaaskamer oude komijnekaas 48+", + "decorators": [], + "display_price": 485, + "image_id": "df628ee64e701bf746f8c8483d1b8ecba8637733ef4aab91916237699393a2a0", + "max_count": 50, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3a0b91210fc9712d1b93ed718df98b073a9e08ee775572f607c952551c82161a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004377" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3a0b91210fc9712d1b93ed718df98b073a9e08ee775572f607c952551c82161a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud komijn#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 485, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004377", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004377", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004377" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004377" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004377", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 85 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004377" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004377" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude komijnekaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004377" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100907-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 34 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100907" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100907", + "name": "De Kaaskamer fenegriek kaas 50+", + "decorators": [], + "display_price": 449, + "image_id": "1601094f943e2fd34d1c446b263bec841eb7905a9a41f3570e72a59d387c8d07", + "max_count": 99, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "305bf4578ee07dacd75fa71df05299aa5b0030568cd69d80704f10f7814f2e02" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100907" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "305bf4578ee07dacd75fa71df05299aa5b0030568cd69d80704f10f7814f2e02" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100907&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Specialiteit#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Kruidenkaas fenegriek#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 449, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100907", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100907", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100907" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100907" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100907", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Fenegriek kaas 50+, van De Kaaskamer, voor, 4 € 49 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100907&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100907" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100907" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Fenegriek kaas 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100907" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1001822-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 35 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1001822" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1001822", + "name": "De Kaaskamer Friese nagelkaas belegen 40+", + "decorators": [], + "display_price": 485, + "image_id": "608d950971949eb8f81f880a00cda01d4a3d1754f2614108b10092f3356626ff", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "a9ad318754a4739b9cb7ae855cd052c749c5f300fd6957434f1ae63c38f5a479" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001822" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "a9ad318754a4739b9cb7ae855cd052c749c5f300fd6957434f1ae63c38f5a479" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1001822&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Oer-Fries#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen nagelkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 485, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1001822", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1001822", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001822" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001822" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1001822", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Friese nagelkaas belegen 40+, van De Kaaskamer, voor, 4 € 85 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1001822&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1001822" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001822" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Friese nagelkaas belegen 40+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1001822" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004443-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 35 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004443" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004443", + "name": "De Kaaskamer rookkaas 45+", + "decorators": [], + "display_price": 229, + "image_id": "5ea027166e4f39ed83d700bcd17d86756b9568ab97f4998f9a68aa45c84a45ee", + "max_count": 50, + "unit_quantity": "Plakken (140 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c32e40304409ec2859557fcf7201ab9b2d100eca5c323208f9db53b524581640" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004443" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c32e40304409ec2859557fcf7201ab9b2d100eca5c323208f9db53b524581640" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004443&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Oer-Hollands#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Rookkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 229, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (140 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004443", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004443", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004443" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004443" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004443", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Rookkaas 45+, van De Kaaskamer, voor, 2 € 29 cent, Plakken (140 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004443&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004443" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004443" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Rookkaas 45+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004443" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009130-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 36 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009130" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009130", + "name": "De Kaaskamer extra belegen kaas 48+", + "decorators": [], + "display_price": 505, + "image_id": "db6a4b521231de8c6e4ba903e35a2d22073fdd2cb12bc31c7a8bdc8d09208191", + "max_count": 50, + "unit_quantity": "Plakken (230 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "01bf359b3a2ffd2e7a8d869e05211a455045dbdf697d8d98984022154606633c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009130" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "01bf359b3a2ffd2e7a8d869e05211a455045dbdf697d8d98984022154606633c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 505, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (230 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009130", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009130", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009130" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009130" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009130", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 5 cent, Plakken (230 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009130" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009130" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009130" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004399-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 36 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004399" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004399", + "name": "De Kaaskamer geitenkaas belegen 50+", + "decorators": [], + "display_price": 515, + "image_id": "8e18f8daae7a2ed223f24cb2d2cac28c8d5f18f016a528fb3bbe730a0ea552aa", + "max_count": 50, + "unit_quantity": "Plakken (210 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ae77965f0a24b823c133c2d0033e1e604d0ebe976e89e61c7f743838ebe94538" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004399" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ae77965f0a24b823c133c2d0033e1e604d0ebe976e89e61c7f743838ebe94538" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 515, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (210 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004399", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004399", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004399" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004399" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004399", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer, voor, 5 € 15 cent, Plakken (210 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004399" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004399" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004399" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009366-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 37 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009366" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009366", + "name": "De Kaaskamer geitenkaas jong belegen 50+", + "decorators": [], + "display_price": 515, + "image_id": "7df06e1b56dd3a65b9b466848a38d779e4f9b21e6e7b64952804700458b12c8c", + "max_count": 50, + "unit_quantity": "Plakken (220 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "cac6d8478141f1ddcec46e352d987e101fa8080c3dd9243d6d5102433fdc3b86" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009366" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "cac6d8478141f1ddcec46e352d987e101fa8080c3dd9243d6d5102433fdc3b86" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Milde smaak#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 515, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (220 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009366", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009366", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009366" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009366" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009366", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer, voor, 5 € 15 cent, Plakken (220 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009366" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009366" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009366" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004421-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 37 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004421" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004421", + "name": "De Kaaskamer geitenkaas oud 50+", + "decorators": [], + "display_price": 549, + "image_id": "2d56898079dc4bf7013cb90d70a6aaa703f9939d008b4fce20b013b9f6a91994", + "max_count": 50, + "unit_quantity": "Plakken (190 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3a30ea818e446d0e07b3b581808b7634d45733b621ad9e372782c41b13bce833" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004421" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3a30ea818e446d0e07b3b581808b7634d45733b621ad9e372782c41b13bce833" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Extra pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oude geitenkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 549, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (190 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004421", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004421", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004421" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004421" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004421", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer, voor, 5 € 49 cent, Plakken (190 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004421" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004421" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004421" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009470-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 38 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009470" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009470", + "name": "Leerdammer original gatenkaas", + "decorators": [], + "display_price": 265, + "image_id": "46e9bbffcc47708aecc49dd4e0d3f7022b641e4dee9921d5f101bbaf1136913e", + "max_count": 50, + "unit_quantity": "Plakken (160 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "86900f75d8eb029d7322ea9dbb69107dc25cb91507472389073b8e3f8429498c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009470" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "86900f75d8eb029d7322ea9dbb69107dc25cb91507472389073b8e3f8429498c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Original gatenkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Leerdammer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 265, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (160 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009470", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009470", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009470" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009470" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009470", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original gatenkaas, van Leerdammer, voor, 2 € 65 cent, Plakken (160 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009470" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009470" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original gatenkaas, van Leerdammer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009470" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012736-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 38 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012736" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012736", + "name": "Old Amsterdam oude kaas", + "decorators": [], + "display_price": 499, + "image_id": "756d28bc99fe6d6d30e6ca66e535fa93dbca7aaf3ebe20906ff4af2b2aebb9aa", + "max_count": 50, + "unit_quantity": "Plakken (225 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1becfe3d79f714cbe78d8ef2c06061b0e56eefa8ded2e5a4f634f4ef3d0bae00" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012736" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1becfe3d79f714cbe78d8ef2c06061b0e56eefa8ded2e5a4f634f4ef3d0bae00" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vertrouwd pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oude kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Old Amsterdam#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 499, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (225 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012736", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012736", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012736" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012736" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012736", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas, van Old Amsterdam, voor, 4 € 99 cent, Plakken (225 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012736" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012736" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas, van Old Amsterdam", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012736" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1045079-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 39 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1045079" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1045079", + "name": "MinusL gouda kaas", + "decorators": [], + "display_price": 315, + "image_id": "00dbc2b0ae2b4165960a2c003b4db5250b75d9865a5fdc2a85b6d1cf6d872053", + "max_count": 50, + "unit_quantity": "Plakken (150 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7d7337d915f813db98dda1c81a720dcef9f7e55a1adeedd99fd336f43ac54cf9" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045079" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7d7337d915f813db98dda1c81a720dcef9f7e55a1adeedd99fd336f43ac54cf9" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "lactofree", + "width": 16, + "fallback": { + "id": "picnic-page/b20d144b20838b0b348dbccc38a5bc7364791da3b4f58452e4c294465e37fc2a" + }, + "color": null, + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Lactosevrij#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)MinusL#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 315, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (150 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1045079", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1045079", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045079" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045079" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1045079", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda kaas, van MinusL, voor, 3 € 15 cent, Plakken (150 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045079" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045079" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Gouda kaas, van MinusL", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045079" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013461-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 39 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013461" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013461", + "name": "Wahid halal jonge kaas 48+", + "decorators": [], + "display_price": 299, + "image_id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0", + "max_count": 50, + "unit_quantity": "Plakken (200 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013461" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Halal#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Wahid#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 299, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (200 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013461", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013461", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013461" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013461" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013461", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Halal jonge kaas 48+, van Wahid, voor, 2 € 99 cent, Plakken (200 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013461" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013461" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Halal jonge kaas 48+, van Wahid", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013461" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008513-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 40 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008513" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008513", + "name": "De Rotterdamsche Oude oude 48+", + "decorators": [], + "display_price": 389, + "image_id": "c8c5707d0ab8ece59323640ed871e0aa6e1050f18f1324dd3bab988ed64b4186", + "max_count": 50, + "unit_quantity": "Plakken (ca. 160 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d843d6f5e45adc817680b1ca9a150121dd022b50fd9e30860f85e57fc470949f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008513" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d843d6f5e45adc817680b1ca9a150121dd022b50fd9e30860f85e57fc470949f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008513&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gerijpt op houten planken#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oude#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Rotterdamsche Oude#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 389, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Plakken (ca. 160 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008513", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008513", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008513" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008513" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008513", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude 48+, van De Rotterdamsche Oude, voor, 3 € 89 cent, Plakken (ca. 160 g)", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008513&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008513" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008513" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude 48+, van De Rotterdamsche Oude", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008513" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013370-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 40 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013370" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013370", + "name": "Picnic jong belegen kaas 48+", + "decorators": [], + "display_price": 859, + "image_id": "a79456da1d2b9205f0df90ef02c21464ea70d9c24973a6d3ae9a72c4ce1a7cc9", + "max_count": 50, + "unit_quantity": "Stuk (750 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f8a64d40706e8ba0cf1a00e246902046e875114b345f2f0372a8b3447c69fe94" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013370" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/11d6fc16177890e87184b491f21c715962bbcbf2a71e70f001f4256d3be53c2d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f8a64d40706e8ba0cf1a00e246902046e875114b345f2f0372a8b3447c69fe94" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 859, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Stuk (750 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013370", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013370", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013370" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013370" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013370", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen, voor, 8 € 59 cent, Stuk (750 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013370" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013370" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013370" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014816-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 41 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014816" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014816", + "name": "Picnic jong belegen kaas 48+", + "decorators": [], + "display_price": 589, + "image_id": "92e2094d22ca5ceb2998fe886833222536cede8e2c74150c34d4034fe7ac19b1", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "760ecab27389e98868ba2454aeac55863d23d92c207fe8881e8dd1e7db5def2b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014816" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/673f97f1d6f437b40170a721d3cf3dc773bd1f1407ef17b543dcbf52b9d84639" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "760ecab27389e98868ba2454aeac55863d23d92c207fe8881e8dd1e7db5def2b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 589, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014816", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014816", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014816" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014816" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014816", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 5 € 89 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014816" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014816" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014816" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013428-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 41 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013428" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013428", + "name": "Picnic belegen kaas 48+", + "decorators": [], + "display_price": 939, + "image_id": "d720f1705aa9eef5abbf8a5ba8a5ec3ed6b906c62a199fe72271820a15cbfd47", + "max_count": 50, + "unit_quantity": "750 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b399cfdec2519d630a9ab2bcf3cadde44eb831a0b5bb90c0d4753ea9e9e12b59" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013428" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/75c282001422b1682ae4e62b5ce51974fa6e760d86a69ff62f8f9361c353f460" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b399cfdec2519d630a9ab2bcf3cadde44eb831a0b5bb90c0d4753ea9e9e12b59" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 939, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)750 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013428", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013428", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013428" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013428" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013428", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Prijskampioen, voor, 9 € 39 cent, 750 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013428" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013428" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013428" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010759-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 42 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010759" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010759", + "name": "Picnic Bio belegen kaas 48+", + "decorators": [], + "display_price": 787, + "image_id": "ad88c9eeaaa9182493f47b17f589ba89c0089911bb6d3f2175cfd05ebd939351", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c8dab06c01107be5496de86b1a8ce027fce8216d1a0d2b825e05112a4f546f0b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010759" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/0e9f47401a3ab01d382cc8f996702a371e0d8f134b3f28ccc32319d8fa545ec5" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c8dab06c01107be5496de86b1a8ce027fce8216d1a0d2b825e05112a4f546f0b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Volromig en hartig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 787, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 875, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010759", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010759", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010759" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010759" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010759", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen kaas 48+, van Picnic, van, 8 € 75 cent, voor, 7 € 87 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010759" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010759" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010759" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013342-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 42 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013342" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013342", + "name": "Picnic jonge kaas 48+", + "decorators": [], + "display_price": 829, + "image_id": "ef3adeeda7e3624166bf5b99c2138da740e02392038e00174fc859dc80da252a", + "max_count": 50, + "unit_quantity": "Stuk (750 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "a506fc80aba5b0f9768446ed486b330384f5b52c40b5474aea7e3d25d7df4228" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013342" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/c1bc7b5906c79b66d3189734d675f169e078dcec591a21a18c7d443bbd7a70fc" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "a506fc80aba5b0f9768446ed486b330384f5b52c40b5474aea7e3d25d7df4228" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 829, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)Stuk (750 g)#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013342", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013342", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013342" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013342" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013342", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen, voor, 8 € 29 cent, Stuk (750 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013342" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013342" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013342" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014773-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 43 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014773" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014773", + "name": "Picnic jonge kaas 48+", + "decorators": [], + "display_price": 565, + "image_id": "34cfd381621167cb5f696196f5c0abb207d8fbbcd93363d3cde580a2880e660f", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "173faf44686849214184cae768ef2d565296cc8a70147a627c056fbf8d086352" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014773" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/604991d7b855f4a47284ae1d339566bcd3efe0b87198090b44984aaebea919c8" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "173faf44686849214184cae768ef2d565296cc8a70147a627c056fbf8d086352" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 565, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014773", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014773", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014773" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014773" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014773", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen, voor, 5 € 65 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014773" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014773" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014773" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010740-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 43 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010740" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010740", + "name": "Picnic Bio jonge kaas 48+", + "decorators": [], + "display_price": 715, + "image_id": "28ca025e2c17f56ac143c59fb9dee639724d939a40049e9abb2bb6d5a068aa5e", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "4aa85978b1bb9dacbe4317dfb0f4dcf3c69cd4e2556dbca46c60ba3f3499d13e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010740" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/72328623a1ab682d5c7a01db80ccb831a741dfc2afc727ab8be3cc5b696de40e" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "4aa85978b1bb9dacbe4317dfb0f4dcf3c69cd4e2556dbca46c60ba3f3499d13e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 715, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 795, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010740", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010740", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010740" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010740" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010740", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jonge kaas 48+, van Picnic, van, 7 € 95 cent, voor, 7 € 15 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010740" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010740" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jonge kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010740" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010656-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 44 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010656" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010656", + "name": "Picnic jong belegen kaas 30+", + "decorators": [], + "display_price": 589, + "image_id": "09edd760bf992eb5dfa3e462fd120f05f10ee308f25420359f74ad8e1ae1e694", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e29f9d21e5df14eb48a7fe797bfd14e5ae830916cc9176062d1d33e587b0af6f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010656" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/5afc485c26209aef47ed5e944b31ade54c948e892a468513df1c754dd3a17cd7" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e29f9d21e5df14eb48a7fe797bfd14e5ae830916cc9176062d1d33e587b0af6f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 589, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010656", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010656", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010656" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010656" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010656", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Picnic, voor, 5 € 89 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010656" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010656" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010656" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010676-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 44 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010676" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010676", + "name": "Picnic belegen kaas 30+", + "decorators": [], + "display_price": 639, + "image_id": "4a812bef0ce2325856e51cfa5a39c80d07f7029270ab75a829441859b996c294", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "029565ebce865a7f38d9fe48814d9d942b0fda6a16c7ca4e86e8f0da46799a27" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010676" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/6e58bbdb13e8d0d2b4dfd39372ccb5bdfabafd22cd2731edc88fbb6e968290bd" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "029565ebce865a7f38d9fe48814d9d942b0fda6a16c7ca4e86e8f0da46799a27" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 639, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010676", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010676", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010676" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010676" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010676", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Picnic, voor, 6 € 39 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010676" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010676" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010676" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014890-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 45 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014890" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014890", + "name": "Picnic extra belegen kaas 48+", + "decorators": [], + "display_price": 709, + "image_id": "c0cb9b874a3117d64bea4708349abc56979eb1f9cf178c23be7392e83522cf94", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5a0831bf27c32104f4583e44729fa5c7e3122a9eef3c8465980aacf1585ed34a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014890" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/b84b8a60b6d93a8c0ddbf71a57859fe5e793e594c8625d12e99dcef2c02d34ef" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5a0831bf27c32104f4583e44729fa5c7e3122a9eef3c8465980aacf1585ed34a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 709, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014890", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014890", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014890" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014890" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014890", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Picnic, voor, 7 € 9 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014890" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014890" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014890" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010636-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 45 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010636" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010636", + "name": "Picnic oude kaas 48+", + "decorators": [], + "display_price": 785, + "image_id": "7ae240bf1745e8541bd55a5652d8f45397d2b8e80c197cfa348ada276f213ba1", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b7dbc8233e18f7d389ca04b620096d8bcdc7c07b14097d28c7a8763e8562aa10" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010636" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/59b9b1804cac936c8dfa646e64ed72671873469fd65e7e8317e65a149b1715fc" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b7dbc8233e18f7d389ca04b620096d8bcdc7c07b14097d28c7a8763e8562aa10" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 785, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010636", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010636", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010636" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010636" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010636", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Picnic, voor, 7 € 85 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010636" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010636" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010636" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014796-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 46 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014796" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014796", + "name": "Picnic jong belegen komijnekaas 48+", + "decorators": [], + "display_price": 689, + "image_id": "5a7643175e7684850342344258308926ec95b310bf4570c8903099fa685ae04b", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3adffb5644a2c907bc77aaed11b76b908e027c78a835d9a528a7d2668ce9e45e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014796" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/25cea418f4efabdcd2001240d7aad6f000fb415f02b22928724256f39b0bc7c2" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3adffb5644a2c907bc77aaed11b76b908e027c78a835d9a528a7d2668ce9e45e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen komijn#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 689, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014796", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014796", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014796" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014796" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014796", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic, voor, 6 € 89 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014796" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014796" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014796" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009345-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 46 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009345" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009345", + "name": "De Kaaskamer boerenkaas jong belegen 48+", + "decorators": [], + "display_price": 789, + "image_id": "0c24ae4ca4097b16b5eaa1855372e4cf1262258db86b5e5770a4e9ec1d20bf23", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "52659df065a6eac5667cbd5dde2eb6d63f7faa425df005aefc4ce8fcc6d26d23" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009345" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "52659df065a6eac5667cbd5dde2eb6d63f7faa425df005aefc4ce8fcc6d26d23" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 789, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009345", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009345", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009345" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009345" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009345", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer, voor, 7 € 89 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009345" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009345" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009345" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009019-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 47 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009019" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009019", + "name": "De Kaaskamer jong belegen kaas 48+", + "decorators": [], + "display_price": 755, + "image_id": "d965041642a002f2bb4fa45ac883a0e37dc9a8dc72998a414fd2f77a903323a5", + "max_count": 50, + "unit_quantity": "Stuk (460 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "33fa8438fdebf63e31b1add0bb66cdbe68792577df6888739bc8e3fab32bef9e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009019" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "33fa8438fdebf63e31b1add0bb66cdbe68792577df6888739bc8e3fab32bef9e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 755, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (460 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009019", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009019", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009019" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009019" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009019", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 55 cent, Stuk (460 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009019" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009019" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009019" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1090206-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 47 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1090206" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1090206", + "name": "De Kaaskamer bio jong belegen kaas 50+", + "decorators": [], + "display_price": 735, + "image_id": "fce95a6924e8cfc94ed44d71c47ac694207ae4dd71261280e13a9225bdfd69bb", + "max_count": 99, + "unit_quantity": "Stuk (410 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c55cc6ece08a1f5fff8bef34087da1652a6b29e09e5cd5c81d66663d7af6a157" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090206" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c55cc6ece08a1f5fff8bef34087da1652a6b29e09e5cd5c81d66663d7af6a157" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 735, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (410 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1090206", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1090206", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090206" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090206" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1090206", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen kaas 50+, van De Kaaskamer, voor, 7 € 35 cent, Stuk (410 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090206" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090206" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio jong belegen kaas 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090206" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1140096-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 48 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1140096" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1140096", + "name": "De Kaaskamer Vakantiekaas jong belegen", + "decorators": [], + "display_price": 699, + "image_id": "8c5a7688ab09db6f0de74714ae3791a95e2eb2e266cf38155f6c165a3bf00145", + "max_count": 99, + "unit_quantity": "Stuk (500 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "886d2c3019505501be144c92964fb1770b864bd1e2071408253185593db5c554" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1140096" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "886d2c3019505501be144c92964fb1770b864bd1e2071408253185593db5c554" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1972#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Vakantiekaas jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 699, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (500 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1140096", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1140096", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1140096" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1140096" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1140096", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Vakantiekaas jong belegen, van De Kaaskamer, voor, 6 € 99 cent, Stuk (500 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1140096" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1140096" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Vakantiekaas jong belegen, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1140096" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008973-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 48 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008973" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008973", + "name": "De Kaaskamer belegen kaas 48+", + "decorators": [], + "display_price": 789, + "image_id": "2b729a0f9c1beced3cab26c3d2aaec1477a15a64851d82dfb47e199ecca330e2", + "max_count": 50, + "unit_quantity": "Stuk (440 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7c425f12b08a2190aeaf663f423a67d9dedfe63636a36cf16e26c0bb60e3d4dd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008973" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7c425f12b08a2190aeaf663f423a67d9dedfe63636a36cf16e26c0bb60e3d4dd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 789, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (440 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008973", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008973", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008973" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008973" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008973", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 89 cent, Stuk (440 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008973" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008973" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008973" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010386-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 49 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010386" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010386", + "name": "De Kaaskamer boerenkaas belegen 48+", + "decorators": [], + "display_price": 819, + "image_id": "f8e578dc53b37f86c597169111a5e90426de6efe9bb0beb8ca8b34351d8ba554", + "max_count": 50, + "unit_quantity": "Stuk (430 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "eed7d6172de57e01e23b790544d311485ef1da4fe62b7c4b83d98b99cf0c7577" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010386" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "eed7d6172de57e01e23b790544d311485ef1da4fe62b7c4b83d98b99cf0c7577" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 819, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (430 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010386", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010386", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010386" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010386" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010386", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer, voor, 8 € 19 cent, Stuk (430 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010386" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010386" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010386" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1090207-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 49 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1090207" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1090207", + "name": "De Kaaskamer bio belegen kaas 50+", + "decorators": [], + "display_price": 745, + "image_id": "a9156b30aea95bf399950e9c545783abad152b529b098055acd09aaf5057b13e", + "max_count": 99, + "unit_quantity": "Stuk (390 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "fce51d40e010e03d9d283fd0134745ade35653c8731d82cfd2d50ee8b4f75e56" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090207" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "fce51d40e010e03d9d283fd0134745ade35653c8731d82cfd2d50ee8b4f75e56" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en hartig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio belegen kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 745, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (390 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1090207", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1090207", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090207" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090207" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1090207", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen kaas 50+, van De Kaaskamer, voor, 7 € 45 cent, Stuk (390 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1090207" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090207" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio belegen kaas 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1090207" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009042-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 50 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009042" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009042", + "name": "De Kaaskamer jonge kaas 48+", + "decorators": [], + "display_price": 755, + "image_id": "16be9c10a37f65aa0404d8317baedc67490cfca9d7a99d96f308a12f2f43e72c", + "max_count": 50, + "unit_quantity": "Stuk (480 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7b8ef48541315cc5165aefc1d5e792082bd60774e010677886753e47ce540018" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009042" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7b8ef48541315cc5165aefc1d5e792082bd60774e010677886753e47ce540018" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 755, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (480 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009042", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009042", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009042" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009042" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009042", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 55 cent, Stuk (480 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009042" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009042" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009042" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080484-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 50 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080484" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080484", + "name": "De Kaaskamer boerenkaas jong 48+", + "decorators": [], + "display_price": 749, + "image_id": "5c639fca61cef9bcb021a15516bcbd7f4ff9982054b74e7754d73cc73549e633", + "max_count": 99, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5459e8a3f8746274816b34c4e685a527209f090470a3949b440105c88154d950" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080484" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5459e8a3f8746274816b34c4e685a527209f090470a3949b440105c88154d950" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 749, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080484", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080484", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080484" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080484" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080484", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong 48+, van De Kaaskamer, voor, 7 € 49 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080484" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080484" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas jong 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080484" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003063-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 51 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003063" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003063", + "name": "De Kaaskamer belegen kaas 35+", + "decorators": [], + "display_price": 639, + "image_id": "eae0347fcaaec65a02b6cc801e12985d12b8597de6a37215000e2bf06fe2c111", + "max_count": 50, + "unit_quantity": "Stuk (360 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ebd3883b64f27713a31e4b54d7761aebd2c38f2791cefdbbc1858d532676cf24" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003063" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ebd3883b64f27713a31e4b54d7761aebd2c38f2791cefdbbc1858d532676cf24" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen 35+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 639, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (360 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003063", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003063", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003063" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003063" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003063", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 39 cent, Stuk (360 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003063" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003063" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 35+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003063" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1015953-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 51 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1015953" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1015953", + "name": "De Kaaskamer jong belegen kaas 35+", + "decorators": [], + "display_price": 619, + "image_id": "d3ca4c5544de102da48aa8a5899fdf2dbc52e57a8d565a0310f987cc62e8a147", + "max_count": 50, + "unit_quantity": "Stuk (380 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "865d0dade60964bdfa49c1ad76eeee16d3986918c605cbd034650f66452d04af" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015953" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "865d0dade60964bdfa49c1ad76eeee16d3986918c605cbd034650f66452d04af" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 35+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 619, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (380 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1015953", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1015953", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015953" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015953" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1015953", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 19 cent, Stuk (380 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015953" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015953" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015953" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080483-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 52 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080483" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080483", + "name": "De Kaaskamer extra belegen kaas 35+", + "decorators": [], + "display_price": 669, + "image_id": "8eeaa832c5018db10d84a2b42b081c0503b45673b8f8f6157740c71426d9a927", + "max_count": 99, + "unit_quantity": "Stuk (340 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3df42673174c3e2acbe502bf83c1263e138652f6e32bbfe618fde6ea09935f54" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080483" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3df42673174c3e2acbe502bf83c1263e138652f6e32bbfe618fde6ea09935f54" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen 35+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 669, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (340 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080483", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080483", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080483" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080483" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080483", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 69 cent, Stuk (340 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080483" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080483" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 35+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080483" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009066-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 52 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009066" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009066", + "name": "De Kaaskamer extra belegen kaas 48+", + "decorators": [], + "display_price": 795, + "image_id": "3c01968f8dd92b981719a7d2e6043a9a86a91fb573595e48ddae46666a9f53e8", + "max_count": 50, + "unit_quantity": "Stuk (420 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "0d3dda428c17e8aec114d2b05dade9f84f98b8dd2281de7d156d499954d30bd1" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009066" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "0d3dda428c17e8aec114d2b05dade9f84f98b8dd2281de7d156d499954d30bd1" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 795, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (420 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009066", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009066", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009066" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009066" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009066", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 95 cent, Stuk (420 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009066" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009066" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009066" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080485-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 53 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080485" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080485", + "name": "De Kaaskamer boerenkaas extra belegen 48+", + "decorators": [], + "display_price": 849, + "image_id": "177240194f0793acb910dd599a91fe4294d5ec42f5402095d004a65dcd9fba48", + "max_count": 99, + "unit_quantity": "Stuk (410 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "2e172d6b591a3be143a98b672c9406c11d5c1a8158131641ee97c993694fb48b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080485" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "2e172d6b591a3be143a98b672c9406c11d5c1a8158131641ee97c993694fb48b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "windmill", + "width": 12, + "fallback": { + "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Boerenkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Extra belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 849, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (410 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080485", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080485", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080485" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080485" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080485", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas extra belegen 48+, van De Kaaskamer, voor, 8 € 49 cent, Stuk (410 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080485" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080485" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Boerenkaas extra belegen 48+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080485" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1005883-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 53 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1005883" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1005883", + "name": "De Kaaskamer overjarige kaas 48+", + "decorators": [], + "display_price": 925, + "image_id": "c859ffd82a2708fe87990652a395993c3e40be25c077f65b340925b0c55dbbd2", + "max_count": 50, + "unit_quantity": "Stuk (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "6f0b0412777c569eaf09f74fd8c3bc3d719d8c9b1b5e49677a8a23d6c5babfdd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005883" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "6f0b0412777c569eaf09f74fd8c3bc3d719d8c9b1b5e49677a8a23d6c5babfdd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Overjarig#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 925, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (400 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1005883", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1005883", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005883" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005883" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1005883", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel, voor, 9 € 25 cent, Stuk (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005883" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005883" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005883" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008996-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 54 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008996" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008996", + "name": "De Kaaskamer oude kaas 48+", + "decorators": [], + "display_price": 949, + "image_id": "3221aaa76ab00d3000551896a6c08463ea60914c2a3d81c470734cbab86a1959", + "max_count": 50, + "unit_quantity": "Stuk (410 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e0525efb0a77bf1e2ff35fdec8c28439582eb819c53475f823cb942b98d85952" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008996" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e0525efb0a77bf1e2ff35fdec8c28439582eb819c53475f823cb942b98d85952" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 949, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (410 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008996", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008996", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008996" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008996" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008996", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel, voor, 9 € 49 cent, Stuk (410 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008996" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008996" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008996" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009088-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 54 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009088" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009088", + "name": "De Kaaskamer komijn jong belegen 48+", + "decorators": [], + "display_price": 775, + "image_id": "cae535ed781bea6c3716a485014a1dc32ba4dd1b78b775da6e79ecd7320a9e77", + "max_count": 50, + "unit_quantity": "Stuk (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e56bda42465c0dfcbf629dba8e022a16b8a3f3e24d47628ccd27913e34350dfe" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009088" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e56bda42465c0dfcbf629dba8e022a16b8a3f3e24d47628ccd27913e34350dfe" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Komijn jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 775, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (400 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009088", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009088", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009088" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009088" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009088", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Komijn jong belegen 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 75 cent, Stuk (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009088" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009088" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Komijn jong belegen 48+, van Kaasmakerij Lutjewinkel", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009088" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009322-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 55 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009322" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009322", + "name": "De Kaaskamer geitenkaas jong belegen 50+", + "decorators": [], + "display_price": 719, + "image_id": "0d956e1ee7c6d34b4bd78d749bb8dbd2eb70f1bd47e84b89c83c7eec1334fcd2", + "max_count": 50, + "unit_quantity": "Stuk (350 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5cdbd5a693905897f25021cc0ee484113ed987b78081a3d8bde54ae3e7032376" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009322" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5cdbd5a693905897f25021cc0ee484113ed987b78081a3d8bde54ae3e7032376" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Mild en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 719, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (350 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009322", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009322", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009322" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009322" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009322", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer, voor, 7 € 19 cent, Stuk (350 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009322" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009322" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009322" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009409-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 55 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009409" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009409", + "name": "De Kaaskamer geitenkaas oud 50+", + "decorators": [], + "display_price": 759, + "image_id": "b4401884177fdecdeceeae6fd59e75c8bc38fb93180cf49def94b4ac49fbe8b0", + "max_count": 50, + "unit_quantity": "Stuk (310 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ed64b01ab7713ec008bf1934146438cef898312a2be05651a74f029990822fba" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009409" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ed64b01ab7713ec008bf1934146438cef898312a2be05651a74f029990822fba" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 759, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (310 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009409", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009409", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009409" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009409" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009409", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer, voor, 7 € 59 cent, Stuk (310 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009409" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009409" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009409" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080486-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 56 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080486" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080486", + "name": "De Kaaskamer geitenkaas belegen 50+", + "decorators": [], + "display_price": 695, + "image_id": "5f98def6eeed97064d16c27f4d0b82895e4633fdf9128b1a94b7ab5312795738", + "max_count": 99, + "unit_quantity": "Stuk (330 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3d9563394d9a9a8a779b2854f52dfcf4bf9cacf47ce4d4c7d3305e81a9bbc4af" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080486" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3d9563394d9a9a8a779b2854f52dfcf4bf9cacf47ce4d4c7d3305e81a9bbc4af" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Licht pittig en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geitenkaas belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Kaaskamer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 695, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (330 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080486", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080486", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080486" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080486" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080486", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer, voor, 6 € 95 cent, Stuk (330 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080486" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080486" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080486" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012113-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 56 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012113" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012113", + "name": "Vergeer jong belegen 48+ kaas", + "decorators": [], + "display_price": 849, + "image_id": "1e7ffba58f3240a2eaacb6d672f8e5dbae541a8698de5d1172f0a9eb540bb281", + "max_count": 50, + "unit_quantity": "Stuk (600 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "eb40858dab6e8e532720bb2c0591973ca48bad665c862bf7f7665851bde08597" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012113" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "eb40858dab6e8e532720bb2c0591973ca48bad665c862bf7f7665851bde08597" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig en mild#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 849, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (600 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012113", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012113", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012113" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012113" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012113", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen 48+ kaas, van Vergeer, voor, 8 € 49 cent, Stuk (600 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012113" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012113" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen 48+ kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012113" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012130-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 57 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012130" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012130", + "name": "Vergeer belegen 48+ kaas", + "decorators": [], + "display_price": 849, + "image_id": "2d8afd83eec34844e7f3a887ee9f7376900217ce9934686ac57c756398acef3e", + "max_count": 50, + "unit_quantity": "Stuk (550 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "470872eb4f06a72809372dcc7a4a8c13861cb15c2e7a3642e2ad267d0e1b253d" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012130" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "470872eb4f06a72809372dcc7a4a8c13861cb15c2e7a3642e2ad267d0e1b253d" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Vol en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 849, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (550 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012130", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012130", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012130" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012130" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012130", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen 48+ kaas, van Vergeer, voor, 8 € 49 cent, Stuk (550 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012130" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012130" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen 48+ kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012130" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012094-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 57 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012094" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012094", + "name": "Vergeer jonge kaas 48+", + "decorators": [], + "display_price": 899, + "image_id": "450dffc07bafceae949a0129f277aefd06db49a088b1d35a0fcd87f45afb61fc", + "max_count": 50, + "unit_quantity": "Stuk (650 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8e5a6753732df03b245246ff0e96f67f42dbc376f7f9cf673512ecc408a4da17" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012094" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8e5a6753732df03b245246ff0e96f67f42dbc376f7f9cf673512ecc408a4da17" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Mild en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Gouda jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 899, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (650 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012094", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012094", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012094" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012094" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012094", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Vergeer, voor, 8 € 99 cent, Stuk (650 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012094" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012094" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jonge kaas 48+, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012094" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1005488-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 58 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1005488" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1005488", + "name": "Milner jong belegen kaas 30+", + "decorators": [], + "display_price": 779, + "image_id": "dffae661328ea72c7c7fc124aec3da8ba52e551d595145cc44d3bda9b56ab0c4", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d16f67c0ac84a23043bca7742861c28e441098c3b6fac9beb780609e0b0c0157" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005488" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d16f67c0ac84a23043bca7742861c28e441098c3b6fac9beb780609e0b0c0157" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 779, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1005488", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1005488", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005488" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005488" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1005488", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 7 € 79 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005488" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005488" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jong belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005488" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1005465-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 58 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1005465" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1005465", + "name": "Milner belegen kaas 30+", + "decorators": [], + "display_price": 799, + "image_id": "5f2b84253ce44893c58bcd2d9590aec0a4f5ad00e100510660c0e9630fb65825", + "max_count": 50, + "unit_quantity": "Stuk (450 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b638c1377755396ea7cd05dd613bdd3a065dd62e2b95bf6927543828c97ebcc3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005465" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b638c1377755396ea7cd05dd613bdd3a065dd62e2b95bf6927543828c97ebcc3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Milner#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 799, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (450 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1005465", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1005465", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005465" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005465" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1005465", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Milner, voor, 7 € 99 cent, Stuk (450 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005465" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005465" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Belegen kaas 30+, van Milner", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005465" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012522-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 59 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012522" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012522", + "name": "Old Amsterdam oude kaas", + "decorators": [], + "display_price": 809, + "image_id": "b49d809480155fafeaa4d1180f5fa83514377b40716da7f898d4df99f7da8be2", + "max_count": 50, + "unit_quantity": "Stuk (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "10f6f5ba30980cf917c3e5e5518d7c4a02e23cdbf42c7654c1ba8e2dad323233" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012522" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "10f6f5ba30980cf917c3e5e5518d7c4a02e23cdbf42c7654c1ba8e2dad323233" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Oude kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Old Amsterdam#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 809, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Stuk (400 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012522", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012522", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012522" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012522" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012522", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas, van Old Amsterdam, voor, 8 € 9 cent, Stuk (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012522" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012522" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Oude kaas, van Old Amsterdam", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012522" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008442-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 59 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008442" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008442", + "name": "Landana Jersey belegen", + "decorators": [], + "display_price": 647, + "image_id": "898e244377440de729199cd35fcc8ff006cccb73a3c0f82fa4860a29401effb4", + "max_count": 50, + "unit_quantity": "400 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ece87c1573d349047dceeb60ecf783a049a1dd4de7a51d0c9bcb0d55ab200001" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008442" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ece87c1573d349047dceeb60ecf783a049a1dd4de7a51d0c9bcb0d55ab200001" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig en gerijpt#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jersey belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Landana#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 647, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 719, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "400 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008442", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008442", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008442" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008442" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008442", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jersey belegen, van Landana, van, 7 € 19 cent, voor, 6 € 47 cent, 400 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008442" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008442" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jersey belegen, van Landana", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008442" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008468-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 60 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008468" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008468", + "name": "Landana Jersey oud", + "decorators": [], + "display_price": 539, + "image_id": "68704d611acd57545b20bc86aa5ff90ad005c60ddf6ee8a27684e0a1457f0553", + "max_count": 50, + "unit_quantity": "320 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e2af9ae5f6b34fc1a2d3f3f9ea6244ca9cec599f960988449c41847b50b52414" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008468" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e2af9ae5f6b34fc1a2d3f3f9ea6244ca9cec599f960988449c41847b50b52414" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Rijk en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Jersey oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Landana#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 539, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 599, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "320 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008468", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008468", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008468" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008468" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008468", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jersey oud, van Landana, van, 5 € 99 cent, voor, 5 € 39 cent, 320 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008468" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008468" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Jersey oud, van Landana", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008468" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016824-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 60 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016824" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016824", + "name": "Landana truffelkaas", + "decorators": [], + "display_price": 494, + "image_id": "e85e1dbaed28f5a00e7849127ee09e9fab047c5bc53d085856aecf8a5ea7df8e", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "369d8011cb098d924072ffd8ecf0e893bb419ed67444c2e31bc48897a30ebd43" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016824" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "369d8011cb098d924072ffd8ecf0e893bb419ed67444c2e31bc48897a30ebd43" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hollandse specialiteit#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Truffelkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Landana#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 494, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 549, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016824", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016824", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016824" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016824" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016824", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Truffelkaas, van Landana, van, 5 € 49 cent, voor, 4 € 94 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016824" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016824" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Truffelkaas, van Landana", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016824" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008562-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 61 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008562" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008562", + "name": "De Rotterdamsche Oude plat stukkie 48+", + "decorators": [], + "display_price": 795, + "image_id": "920ca8d95b144656c4d010241a6993b4757906924302cb077d381ad1fc7ee81f", + "max_count": 50, + "unit_quantity": "450 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "cee013c8c4715462b203530cad05c2fae7dae1ed9c89a08ff31df60211463547" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008562" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "cee013c8c4715462b203530cad05c2fae7dae1ed9c89a08ff31df60211463547" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gerijpt op houten planken#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Plat stukkie oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)De Rotterdamsche Oude#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 795, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "450 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008562", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008562", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008562" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008562" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008562", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Plat stukkie 48+, van De Rotterdamsche Oude, voor, 7 € 95 cent, 450 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008562" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008562" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Plat stukkie 48+, van De Rotterdamsche Oude", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008562" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1060428-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 61 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1060428" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1060428", + "name": "Picnic geraspte jonge kaas 48+", + "decorators": [], + "display_price": 319, + "image_id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3", + "max_count": 50, + "unit_quantity": "2 x 175 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060428" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt jong#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 6, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 2, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "alignment": "CENTER", + "distribution": "START", + "padding": { + "bottom": 2 + }, + "spacing": 2, + "type": "STACK", + "children": [ + { + "textAlignment": "END", + "textAttributes": { + "size": 12, + "weight": "SEMIBOLD", + "color": "#333333" + }, + "markdown": "#(#787570)2#(#787570)", + "type": "RICH_TEXT" + }, + { + "iconKey": "crossSmall", + "width": 6, + "height": 6, + "color": "#787570", + "type": "ICON" + } + ] + }, + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "2 x 175 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1060428", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1060428", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060428" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060428" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1060428", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jonge kaas 48+, van Picnic, voor, 6 € 38 cent, 2 x 175 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060428" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060428" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jonge kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060428" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013766-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 62 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013766" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013766", + "name": "Picnic geraspte milde kaas", + "decorators": [], + "display_price": 319, + "image_id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd", + "max_count": 50, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013766" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte milde kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)250 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013766", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013766", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013766" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013766" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013766", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte milde kaas, van Prijskampioen, voor, 3 € 19 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013766" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013766" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte milde kaas, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013766" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013573-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 62 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013573" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013573", + "name": "Picnic geraspte belegen kaas 48+", + "decorators": [], + "display_price": 395, + "image_id": "2bb349da23831bc135979c27fd7bf290270fab356824f453d0b1b90008ef8d6e", + "max_count": 50, + "unit_quantity": "175 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7b7e8eff780a207c17a4753b8bcb59b3beb5a45b56cab4ca2e15c660f723534e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013573" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7b7e8eff780a207c17a4753b8bcb59b3beb5a45b56cab4ca2e15c660f723534e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 395, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "175 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013573", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013573", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013573" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013573" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013573", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte belegen kaas 48+, van Picnic, voor, 3 € 95 cent, 175 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013573" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013573" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013573" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013784-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 63 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013784" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013784", + "name": "Picnic geraspte pittige kaas", + "decorators": [], + "display_price": 339, + "image_id": "122d051534f246e53cab566cd7608e391bc8d0a382d46ec43c6d68ec668e8115", + "max_count": 50, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "bdaa202db08f018a1169a96c996bc6fbd6d57bd82169379905d8b93d77f039ae" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013784" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "bdaa202db08f018a1169a96c996bc6fbd6d57bd82169379905d8b93d77f039ae" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte pittige kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 339, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)250 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013784", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013784", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013784" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013784" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013784", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte pittige kaas, van Prijskampioen, voor, 3 € 39 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013784" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013784" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte pittige kaas, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013784" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010191-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 63 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010191" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010191", + "name": "Parmigiano reggiano 32+ flakes", + "decorators": [], + "display_price": 265, + "image_id": "8bb957a475503a7c60c98008ba816f200f98d8f21265f7ea1994621e9b885c57", + "max_count": 50, + "unit_quantity": "Flakes (80 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "098f146958f3e33684b061e3a95a51756c078ffd8278f2a8be0f97813d91372b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010191" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "098f146958f3e33684b061e3a95a51756c078ffd8278f2a8be0f97813d91372b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Rijk en pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Parmigiano Reggiano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 265, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "Flakes (80 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010191", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010191", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010191" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010191" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010191", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano 32+ flakes, van Picnic, voor, 2 € 65 cent, Flakes (80 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010191" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010191" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano 32+ flakes, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010191" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013748-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 64 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013748" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013748", + "name": "Picnic geraspte jong belegen kaas 30+", + "decorators": [], + "display_price": 349, + "image_id": "35fd9b0fe38ccc01c4a574b74425d1960cf0b0335132d4ca4dfd5655f2e48e54", + "max_count": 50, + "unit_quantity": "175 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e0a587e1b5e6d4589f17457fa6e5bc922e83dabdde17e3fbf89d12d90f6efe20" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013748" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e0a587e1b5e6d4589f17457fa6e5bc922e83dabdde17e3fbf89d12d90f6efe20" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt jong belegen 30+#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 349, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "175 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013748", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013748", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013748" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013748" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013748", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jong belegen kaas 30+, van Picnic, voor, 3 € 49 cent, 175 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013748" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013748" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jong belegen kaas 30+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013748" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013550-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 64 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013550" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013550", + "name": "Picnic geraspte jong belegen kaas 48+", + "decorators": [], + "display_price": 345, + "image_id": "98eecea610e89fd4fda75b19884fa0c1e52fb02e1c344e7f5246f1a43b8cecec", + "max_count": 50, + "unit_quantity": "175 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "98f62a46a8a544944575a948a63189050b25ab37c7a6f198ca4aacadc5868163" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013550" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "98f62a46a8a544944575a948a63189050b25ab37c7a6f198ca4aacadc5868163" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt jong belegen#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 345, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "175 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013550", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013550", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013550" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013550" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013550", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jong belegen kaas 48+, van Picnic, voor, 3 € 45 cent, 175 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013550" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013550" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte jong belegen kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013550" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013594-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 65 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013594" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013594", + "name": "Picnic geraspte oude kaas 48+", + "decorators": [], + "display_price": 415, + "image_id": "51cb2c5b01c6a1593c63642c31e801dd785853e22b9b630745bde506ea75c8dd", + "max_count": 50, + "unit_quantity": "175 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "802f430a29dc9c35cfc6aa3956f5e7b8e21c1b7e74516607c6f32e66ea63f66f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013594" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "802f430a29dc9c35cfc6aa3956f5e7b8e21c1b7e74516607c6f32e66ea63f66f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "2e halve prijs", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Picnic#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 415, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "175 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013594", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013594", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013594" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013594" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013594", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte oude kaas 48+, van Picnic, voor, 4 € 15 cent, 175 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013594" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013594" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte oude kaas 48+, van Picnic", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013594" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1006732-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 65 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1006732" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1006732", + "name": "Vergeer geraspte pasta kaas", + "decorators": [], + "display_price": 289, + "image_id": "c28d32fe1c5ff00b3180cfd311f3db3f57b83dc61e62a02161f635c676918d75", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e3951ef8f0a6d912ced1a211f89eca4f73d349ed2096fc79e7e65d656dd6fc9f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006732" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e3951ef8f0a6d912ced1a211f89eca4f73d349ed2096fc79e7e65d656dd6fc9f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Speciaal voor pasta#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 289, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1006732", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1006732", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006732" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006732" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1006732", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte pasta kaas, van Vergeer, voor, 2 € 89 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006732" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006732" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte pasta kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006732" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016936-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 66 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016936" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016936", + "name": "Vergeer geraspte cheddar", + "decorators": [], + "display_price": 299, + "image_id": "de0010ee1669d20ae59bd00caea1c905772b25bb551248bce5a1265f856a2254", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7f6f28d576dc61fd02e3d6d90f65bad1320acd8e6e6643998e6eaee7cf74f31c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016936" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7f6f28d576dc61fd02e3d6d90f65bad1320acd8e6e6643998e6eaee7cf74f31c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte cheddar#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 299, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016936", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016936", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016936" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016936" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016936", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte cheddar, van Vergeer, voor, 2 € 99 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016936" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016936" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte cheddar, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016936" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1006926-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 66 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1006926" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1006926", + "name": "Vergeer geraspte gratin kaas", + "decorators": [], + "display_price": 269, + "image_id": "3a87e0217f2ab1c10374243251d01ac6d0f7c8e63238624cf75d31bf5830817d", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1140a27108e5b06fd9ba23ebaa1ce76f22994d8f695a96d2c4256b4b7e955c96" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006926" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1140a27108e5b06fd9ba23ebaa1ce76f22994d8f695a96d2c4256b4b7e955c96" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Speciaal voor ovengratin#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 269, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1006926", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1006926", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006926" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006926" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1006926", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte gratin kaas, van Vergeer, voor, 2 € 69 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1006926" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006926" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte gratin kaas, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1006926" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1050031-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 67 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1050031" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1050031", + "name": "Vergeer geraspte geitenkaas 50+", + "decorators": [], + "display_price": 285, + "image_id": "8566a5187e6443c7e3bd96d55f12cace753f61e6619c9aa29a16b31b241c5b3a", + "max_count": 99, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8a9059a7ebe7af22e2d154372a09919b99d7e9e102849dd989ba22685735a5d3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1050031" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8a9059a7ebe7af22e2d154372a09919b99d7e9e102849dd989ba22685735a5d3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte geitenkaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Vergeer#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 285, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1050031", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1050031", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1050031" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1050031" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1050031", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte geitenkaas 50+, van Vergeer, voor, 2 € 85 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1050031" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1050031" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte geitenkaas 50+, van Vergeer", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1050031" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009829-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 67 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009829" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009829", + "name": "Parrano rasp", + "decorators": [], + "display_price": 249, + "image_id": "696200362c5386275c171ebaefca2e00a50997a32016f33fdf83ace22a71abaa", + "max_count": 50, + "unit_quantity": "100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "6136f4e5345806cb64237e851a513ee9e71d83c3337c906f95388a45f8ccb0c7" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009829" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "6136f4e5345806cb64237e851a513ee9e71d83c3337c906f95388a45f8ccb0c7" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Originale#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 249, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009829", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009829", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009829" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009829" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009829", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Rasp, van Parrano Originale, voor, 2 € 49 cent, 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009829" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009829" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Rasp, van Parrano Originale", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009829" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1045119-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 68 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1045119" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1045119", + "name": "Parrano robusto snippers", + "decorators": [], + "display_price": 249, + "image_id": "961c56ffca181d570214a7d8b6b3c06a46e21ad1881d341ab35489de5f26c882", + "max_count": 50, + "unit_quantity": "80 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "6eb89f5ecd95c40f86eea465ba757039b60d61ec2d54092ea51918effac2868a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045119" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "6eb89f5ecd95c40f86eea465ba757039b60d61ec2d54092ea51918effac2868a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Kaassnippers#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Robusto#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 249, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "80 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1045119", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1045119", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045119" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045119" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1045119", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto snippers, van Parrano Robusto, voor, 2 € 49 cent, 80 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045119" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045119" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto snippers, van Parrano Robusto", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045119" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011565-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 68 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011565" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011565", + "name": "Parrano originale strooikaas", + "decorators": [], + "display_price": 399, + "image_id": "e714125770adab75d53eaefc51a0f8f4271d4f3bf643c7574b24c2e47453392e", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7bcd7827d937c4e2f45b8ef37aa38174ba75ee4b4deed15f3b4fa86810cdf43e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011565" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7bcd7827d937c4e2f45b8ef37aa38174ba75ee4b4deed15f3b4fa86810cdf43e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)In hersluitbare bus#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Strooikaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Originale#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011565", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011565", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011565" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011565" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011565", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Originale strooikaas, van Parrano Originale, voor, 3 € 99 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011565" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011565" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Originale strooikaas, van Parrano Originale", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011565" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1045117-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 69 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1045117" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1045117", + "name": "Parrano robusto verse poeder", + "decorators": [], + "display_price": 189, + "image_id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd", + "max_count": 50, + "unit_quantity": "60 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045117" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Kaaspoeder#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Robusto#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 189, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "60 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1045117", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1045117", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045117" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045117" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1045117", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto verse poeder, van Parrano Robusto, voor, 1 € 89 cent, 60 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045117" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045117" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto verse poeder, van Parrano Robusto", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045117" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008769-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 69 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008769" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008769", + "name": "Parrano snippers", + "decorators": [], + "display_price": 245, + "image_id": "0f79d8e7748e1cce050879eab8c201ee28e5c3687f2eaff42349a65744ca669a", + "max_count": 50, + "unit_quantity": "80 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "bc8f0e0adafd82b70554f648c29642e517f444160b96f605f0751b7c3abe098f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008769" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "bc8f0e0adafd82b70554f648c29642e517f444160b96f605f0751b7c3abe098f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Kaassnippers#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Originale#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 245, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "80 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008769", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008769", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008769" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008769" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008769", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Snippers, van Parrano Originale, voor, 2 € 45 cent, 80 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008769" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008769" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Snippers, van Parrano Originale", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008769" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1133564-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 70 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1133564" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1133564", + "name": "Parrano mozzarella rasp", + "decorators": [], + "display_price": 285, + "image_id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4", + "max_count": 99, + "unit_quantity": "135 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1133564" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella rasp#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 285, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "135 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1133564", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1133564", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1133564" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1133564" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1133564", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella rasp, van Parrano, voor, 2 € 85 cent, 135 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1133564" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1133564" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella rasp, van Parrano", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1133564" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1067233-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 70 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1067233" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1067233", + "name": "Parrano robusto poederbus", + "decorators": [], + "display_price": 399, + "image_id": "661a4aeb39d7c2de9b382ab43c539713ebf8dc6a806934bc2cd2395f0ef134a8", + "max_count": 99, + "unit_quantity": "140 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "37f97433aee934da05edd2a883cee49101f55a84ad10555ed21c2b5c0c2e2e7d" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067233" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "37f97433aee934da05edd2a883cee49101f55a84ad10555ed21c2b5c0c2e2e7d" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)In hersluitbare bus#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Strooikaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Parrano Robusto#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "140 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1067233", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1067233", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067233" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067233" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1067233", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto poederbus, van Parrano Robusto, voor, 3 € 99 cent, 140 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1067233" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067233" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Robusto poederbus, van Parrano Robusto", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1067233" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1045915-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 71 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1045915" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1045915", + "name": "Galbani grana padano grattugiato grosso", + "decorators": [], + "display_price": 199, + "image_id": "1bb8ffbf62e2c2d7f0c84b68bd4191ad0942f1041274cfa9f4031d11c2d33702", + "max_count": 50, + "unit_quantity": "70 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e2e8e5b97fad085885f4e101b80e98f0a64a7513741b38f640eb25da264cf08f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045915" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e2e8e5b97fad085885f4e101b80e98f0a64a7513741b38f640eb25da264cf08f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte Grana Padano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 199, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "70 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1045915", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1045915", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045915" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045915" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1045915", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano grattugiato grosso, van Galbani, voor, 1 € 99 cent, 70 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045915" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045915" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano grattugiato grosso, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045915" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014683-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 71 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014683" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014683", + "name": "Galbani mozzarella geraspt", + "decorators": [], + "display_price": 269, + "image_id": "df7557da29376ab02fd641c4fa1e27b75ab55b0b00f47e0418680fc146756b5b", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ec315b27a6efa4f0722bfc0b02210792c830259e2d71ac768abfd49448c38966" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014683" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ec315b27a6efa4f0722bfc0b02210792c830259e2d71ac768abfd49448c38966" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Hersluitbaar#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte mozzarella#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 269, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014683", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014683", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014683" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014683" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014683", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella geraspt, van Galbani, voor, 2 € 69 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014683" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014683" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella geraspt, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014683" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1051273-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 72 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1051273" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1051273", + "name": "Galbani grana padano poeder", + "decorators": [], + "display_price": 199, + "image_id": "a97846597a64fc30ec8f0a2e812979fda242fa06b1c76ebe020048887f381610", + "max_count": 99, + "unit_quantity": "60 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5ba70e77c9aeaf9cb64217dd07f93efe9aa0863729a8bcaf8875c61b5eea9bc1" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051273" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5ba70e77c9aeaf9cb64217dd07f93efe9aa0863729a8bcaf8875c61b5eea9bc1" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Grana Padano poeder#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 199, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "60 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1051273", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1051273", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051273" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051273" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1051273", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano poeder, van Galbani, voor, 1 € 99 cent, 60 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051273" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051273" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano poeder, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051273" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1004851-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 72 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1004851" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1004851", + "name": "Colla grana padano rasp", + "decorators": [], + "display_price": 309, + "image_id": "7b2d9b8cc07a92518128b74b4c24fe284f425b24ce3042180817a9b49118d8c5", + "max_count": 50, + "unit_quantity": "100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c95ce0cfcaef57bc952caa96fdb827a393f99f3221176c3c6c7a47e6d477e914" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004851" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c95ce0cfcaef57bc952caa96fdb827a393f99f3221176c3c6c7a47e6d477e914" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en licht pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte Grana Padano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Colla#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 309, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1004851", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1004851", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004851" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004851" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1004851", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano rasp, van Colla, voor, 3 € 9 cent, 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1004851" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004851" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano rasp, van Colla", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1004851" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1015870-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 73 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1015870" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1015870", + "name": "Babybel mini kaas", + "decorators": [], + "display_price": 399, + "image_id": "77b278d96108810e4cfefa0fc394aa86526b4011d500408cfb5f0d13dfa10489", + "max_count": 50, + "unit_quantity": "10 stuks" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c9db995f03bdbfa7c1c007d3f1da7b99088f216379bb6d9680e9b6a5cf185aad" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015870" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c9db995f03bdbfa7c1c007d3f1da7b99088f216379bb6d9680e9b6a5cf185aad" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Babybel mini#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "10 stuks", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1015870", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1015870", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015870" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015870" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1015870", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mini kaas, voor, 3 € 99 cent, 10 stuks", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015870" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015870" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mini kaas", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015870" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1015891-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 73 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1015891" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1015891", + "name": "Babybel mini rolls kaas", + "decorators": [], + "display_price": 286, + "image_id": "aaa85857318c172feadf95792f341d5130a8e10e65b8e8cd980fad7451f20feb", + "max_count": 50, + "unit_quantity": "5 stuks" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ca155e729115021a9ed9ff8f89f775be15165c827f97e4aa91c6b13b5de5ad1f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015891" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ca155e729115021a9ed9ff8f89f775be15165c827f97e4aa91c6b13b5de5ad1f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Babybel mini rolls#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 286, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "5 stuks", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1015891", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1015891", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015891" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015891" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1015891", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mini rolls kaas, voor, 2 € 86 cent, 5 stuks", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1015891" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015891" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mini rolls kaas", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1015891" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1000384-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 74 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1000384" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1000384", + "name": "La Vache Qui Rit Cheez dippers", + "decorators": [], + "display_price": 319, + "image_id": "8f1d63f7d1937e2d46ec10f85f6d728c7114c2a599fd18ae645c44c6449e7ed0", + "max_count": 50, + "unit_quantity": "5 kuipjes" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5d1c46d05af22fa0694d41ada43d29704258ed9dab99b8aa354beaeea83e634e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1000384" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5d1c46d05af22fa0694d41ada43d29704258ed9dab99b8aa354beaeea83e634e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Met smeerkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Cheez dippers#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)La Vache Qui Rit#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "5 kuipjes", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1000384", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1000384", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1000384" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1000384" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1000384", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Cheez dippers, van La Vache Qui Rit, voor, 3 € 19 cent, 5 kuipjes", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1000384" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1000384" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Cheez dippers, van La Vache Qui Rit", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1000384" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1017824-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 74 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1017824" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1017824", + "name": "Cheestrings original", + "decorators": [], + "display_price": 349, + "image_id": "409c55be5d3af7da31c3213b680dec922bd00db33053f06a9aa056723fa761b7", + "max_count": 50, + "unit_quantity": "8 stuks" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5e9a7e99d90f43009513fb78aca95027762b9427d7a81d0048a05edd98f132e9" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017824" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5e9a7e99d90f43009513fb78aca95027762b9427d7a81d0048a05edd98f132e9" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Afpelbare kaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Cheestrings#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 349, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "8 stuks", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1017824", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1017824", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017824" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017824" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1017824", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original, voor, 3 € 49 cent, 8 stuks", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1017824" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017824" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1017824" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011419-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 75 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011419" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011419", + "name": "Old Amsterdam geraspte kaas 48+", + "decorators": [], + "display_price": 329, + "image_id": "5ebbba98332ab95b87a1cd7bb8ddb2d9ca003a23fc31679b6ab4f1b6c4c0812c", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7dbc88e94829ea12cc9caf142b8c2b7848f740f676540d96ca772f789c1903a4" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011419" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7dbc88e94829ea12cc9caf142b8c2b7848f740f676540d96ca772f789c1903a4" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspt oud#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Old Amsterdam#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 329, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011419", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011419", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011419" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011419" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011419", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte kaas 48+, van Old Amsterdam, voor, 3 € 29 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011419" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011419" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte kaas 48+, van Old Amsterdam", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011419" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016220-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 75 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016220" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016220", + "name": "Solo Italia Parmigiano Reggiano poeder 32+", + "decorators": [], + "display_price": 239, + "image_id": "e6746e1fa1b6adde92103d3e6071bf8a5487feafeaf81adbeb065c42bca96338", + "max_count": 99, + "unit_quantity": "60 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "6bbe2f51bbd5f145f350d8fd8986ac77a5393bb807faf894c35d9f36cb0acdd6" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016220" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "6bbe2f51bbd5f145f350d8fd8986ac77a5393bb807faf894c35d9f36cb0acdd6" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Rijk en pittig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Parmigiano Reggiano poeder#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Solo Italia#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 239, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "60 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016220", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016220", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016220" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016220" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016220", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano Reggiano poeder 32+, van Solo Italia, voor, 2 € 39 cent, 60 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016220" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016220" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano Reggiano poeder 32+, van Solo Italia", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016220" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012712-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 76 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012712" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012712", + "name": "Solo Italia geraspte Italiaanse kaas", + "decorators": [], + "display_price": 149, + "image_id": "f969be976b2e60f9a33924b25c8e776c95dea63ed9767f42a7d6498f9199ec42", + "max_count": 99, + "unit_quantity": "40 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f58ce6b0071d186a55e1e3cc9b3e031de43b40dadf5cff551f693c07e6a621a3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012712" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f58ce6b0071d186a55e1e3cc9b3e031de43b40dadf5cff551f693c07e6a621a3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Solo Italia#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 149, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)Klein#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)40 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012712", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012712", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012712" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012712" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012712", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte Italiaanse kaas, van Solo Italia, voor, 1 € 49 cent, 40 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012712" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012712" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte Italiaanse kaas, van Solo Italia", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012712" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1141841-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 76 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1141841" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1141841", + "name": "Trentin geraspte grana padano", + "decorators": [], + "display_price": 309, + "image_id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656", + "max_count": 99, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141841" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Lichtzoet en kruidig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Geraspte grana padano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Trentin#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 309, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1141841", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1141841", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141841" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141841" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1141841", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte grana padano, van Trentin, voor, 3 € 9 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141841" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141841" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Geraspte grana padano, van Trentin", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141841" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011326-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 77 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011326" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011326", + "name": "Bastiaansen bio geraspte kaas mild 48+", + "decorators": [], + "display_price": 369, + "image_id": "62a63ae060ceb65b65147cbfa9609ee933d680af38fbd3eabeac19c3a0c76bc4", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f1dcca7fd61373de6e52fb7d4cbd26fe54fc32bb2df6369b059cb60f07c38ba2" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011326" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f1dcca7fd61373de6e52fb7d4cbd26fe54fc32bb2df6369b059cb60f07c38ba2" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zachte smaak#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio geraspte milde#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Bastiaansen#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 369, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011326", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011326", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011326" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011326" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011326", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio geraspte kaas mild 48+, van Bastiaansen, voor, 3 € 69 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011326" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011326" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio geraspte kaas mild 48+, van Bastiaansen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011326" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011347-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 77 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011347" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011347", + "name": "Bastiaansen bio geraspte kaas pikant 48+", + "decorators": [], + "display_price": 385, + "image_id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011347" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig en hartig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio geraspte pikante kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Bastiaansen#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 385, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011347", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011347", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011347" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011347" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011347", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio geraspte kaas pikant 48+, van Bastiaansen, voor, 3 € 85 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011347" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011347" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio geraspte kaas pikant 48+, van Bastiaansen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011347" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008206-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 78 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008206" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008206", + "name": "Galbani mozzarella", + "decorators": [], + "display_price": 205, + "image_id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008206" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Van Italiaanse koemelk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 205, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008206", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008206", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008206" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008206" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008206", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella, van Galbani, voor, 2 € 5 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008206" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008206" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008206" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003167-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 78 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003167" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003167", + "name": "Galbani mozzarella maxi", + "decorators": [], + "display_price": 279, + "image_id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003167" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella maxi#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 279, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003167", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003167", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003167" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003167" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003167", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella maxi, van Galbani, voor, 2 € 79 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003167" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003167" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella maxi, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003167" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1005235-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 79 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1005235" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1005235", + "name": "Galbani mozzarella light", + "decorators": [], + "display_price": 219, + "image_id": "a5237d0c35e377a539a8544f09877e475d5053881b46491f7fc8c99059bbe7d6", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "36f59125eebc44504d9ce40f74dcf64876657606baa6f6cebf5f6608d67c73b0" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005235" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "36f59125eebc44504d9ce40f74dcf64876657606baa6f6cebf5f6608d67c73b0" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)50% minder vet#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella light#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 219, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1005235", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1005235", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005235" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005235" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1005235", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella light, van Galbani, voor, 2 € 19 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1005235" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005235" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella light, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1005235" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1051272-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 79 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1051272" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1051272", + "name": "Galbani burrata", + "decorators": [], + "display_price": 379, + "image_id": "5b898dd4d5821bd07355dc805d8d760ce19c5a38de15573c719f7634227e31ad", + "max_count": 99, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "67f83f6ee51534a0813cafe5de4fd5e4a7526742994a7254f3b23365820291b3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051272" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "67f83f6ee51534a0813cafe5de4fd5e4a7526742994a7254f3b23365820291b3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en rijk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Burrata#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 379, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1051272", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1051272", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051272" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051272" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1051272", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata, van Galbani, voor, 3 € 79 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051272" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051272" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051272" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011289-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 80 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011289" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011289", + "name": "Galbani mozzarella di bufala", + "decorators": [], + "display_price": 325, + "image_id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011289" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 325, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011289", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011289", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011289" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011289" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011289", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala, van Galbani, voor, 3 € 25 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011289" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011289" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011289" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1045147-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 80 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1045147" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1045147", + "name": "Galbani mozzarella lactosevrij", + "decorators": [], + "display_price": 199, + "image_id": "8c82f9d5ec4dc2d90c6ec2051c30e6e9b9cf63c43829f7d164a53366875acd98", + "max_count": 50, + "unit_quantity": "100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "990e4758797a14f2f74a840f2017e845ca75d00c597512f2af169cc5fbaa8e40" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045147" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "990e4758797a14f2f74a840f2017e845ca75d00c597512f2af169cc5fbaa8e40" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella lactosevrij#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 199, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1045147", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1045147", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045147" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045147" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1045147", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella lactosevrij, van Galbani, voor, 1 € 99 cent, 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1045147" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045147" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella lactosevrij, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1045147" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100210-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 81 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100210" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100210", + "name": "Galbani mozzarella di bufala maxi", + "decorators": [], + "display_price": 469, + "image_id": "2ad9b3472fa8b90a7d1883fae3ffcbe7da4017884d5963551dbb8db726c55a20", + "max_count": 99, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f29528c1f81ecb9be1a3c82296ff4199d36f3e469f6f801abd1a71e317011d80" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100210" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f29528c1f81ecb9be1a3c82296ff4199d36f3e469f6f801abd1a71e317011d80" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella di bufala maxi#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 469, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)200 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100210", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100210", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100210" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100210" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100210", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala maxi, van Galbani, voor, 4 € 69 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100210" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100210" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala maxi, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100210" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011271-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 81 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011271" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011271", + "name": "Galbani mozzarella mini's", + "decorators": [], + "display_price": 279, + "image_id": "379c259dd2ebdafc8b321c65c18212ef1581a447d4fc69693bdd21879e5cfe93", + "max_count": 50, + "unit_quantity": "20 stuks" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "dc0a1e1ca0dc66347a26b7b52177a35bda38302cf0c2abfafc41d763581193fc" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011271" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "dc0a1e1ca0dc66347a26b7b52177a35bda38302cf0c2abfafc41d763581193fc" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Fris en zacht#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella mini's#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 279, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "20 stuks", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011271", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011271", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011271" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011271" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011271", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella mini's, van Galbani, voor, 2 € 79 cent, 20 stuks", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011271" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011271" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella mini's, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011271" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014623-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 82 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014623" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014623", + "name": "Galbani mozzarella latte di bufala mini", + "decorators": [], + "display_price": 369, + "image_id": "a13f3ae0a9a3eb187765b5b7b68b14ed78b1a74b9281ea3fa28efaedf4827a50", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1a7a049cd704b4eb0b5dba8e6f69b80711d0febc856b22edfa28d27b1c62db57" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014623" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1a7a049cd704b4eb0b5dba8e6f69b80711d0febc856b22edfa28d27b1c62db57" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Kleine bolletjes#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 369, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014623", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014623", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014623" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014623" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014623", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella latte di bufala mini, van Galbani, voor, 3 € 69 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014623" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014623" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella latte di bufala mini, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014623" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011253-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 82 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011253" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011253", + "name": "Galbani Italiaanse ricotta cremosa", + "decorators": [], + "display_price": 329, + "image_id": "bd69d4d2cd844851dfcc41c528520ff483a88cddcddc5d23b3302be2809aaa47", + "max_count": 50, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "9fe4c1c510c45afc5c2091392ffa3a09ff01acd0aac8f33d7105355c7660f3fd" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011253" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "9fe4c1c510c45afc5c2091392ffa3a09ff01acd0aac8f33d7105355c7660f3fd" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Ricotta cremosa#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 329, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "250 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011253", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011253", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011253" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011253" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011253", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse ricotta cremosa, van Galbani, voor, 3 € 29 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011253" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011253" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse ricotta cremosa, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011253" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100841-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 83 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100841" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100841", + "name": "Galbani ricotta", + "decorators": [], + "display_price": 149, + "image_id": "590a1cf441d0c7f0e93485b3daf2bc4aad98c2bf657521c85d2f4263fabb5d82", + "max_count": 99, + "unit_quantity": "100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8465bcc6a85a6c606f577688fbdd89278ac95dd569cf48961c18a5ede490f8bf" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100841" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8465bcc6a85a6c606f577688fbdd89278ac95dd569cf48961c18a5ede490f8bf" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Ricotta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 149, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100841", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100841", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100841" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100841" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100841", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Ricotta, van Galbani, voor, 1 € 49 cent, 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100841" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100841" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Ricotta, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100841" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011232-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 83 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011232" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011232", + "name": "Galbani mascarpone", + "decorators": [], + "display_price": 339, + "image_id": "8251e9daa51080adb2c9554d43a13b039ff33a9e55e365bdef44261073904b37", + "max_count": 50, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "591b37f0872ebc528a5752b0da220a12c9adfcba0e83ba8cd5bf531a78808bb5" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011232" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "591b37f0872ebc528a5752b0da220a12c9adfcba0e83ba8cd5bf531a78808bb5" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mascarpone#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 339, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "250 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011232", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011232", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011232" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011232" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011232", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Galbani, voor, 3 € 39 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011232" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011232" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011232" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100116-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 84 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100116" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100116", + "name": "Galbani mascarpone", + "decorators": [], + "display_price": 615, + "image_id": "d13c3b9cd49d3220935d5542b89de80ac9c478985cbce09e4ca6846a816df713", + "max_count": 99, + "unit_quantity": "500 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "c92cb113ff64a3bc14c12c56d8e23ad27df87d6f2922b2bafa041079880e058d" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100116" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "c92cb113ff64a3bc14c12c56d8e23ad27df87d6f2922b2bafa041079880e058d" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mascarpone#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Galbani#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 615, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)500 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100116", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100116", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100116" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100116" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100116", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Galbani, voor, 6 € 15 cent, 500 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100116" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100116" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Galbani", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100116" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014176-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 84 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014176" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014176", + "name": "Salakis Griekse feta", + "decorators": [], + "display_price": 335, + "image_id": "abf68bc03391141123390ce5b2a4f96c7fc913ee0608e578c9782898ba752518", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "19cb8a1600ae95ac83e7779d0e64d8d93e3a13b6a8e482b94a5ed5ea54fc6710" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014176" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "19cb8a1600ae95ac83e7779d0e64d8d93e3a13b6a8e482b94a5ed5ea54fc6710" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Salakis#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 335, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014176", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014176", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014176" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014176" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014176", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Griekse feta, van Salakis, voor, 3 € 35 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014176" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014176" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Griekse feta, van Salakis", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014176" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1014238-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 85 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1014238" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1014238", + "name": "Salakis halloumi", + "decorators": [], + "display_price": 363, + "image_id": "1621a361c2b76c3b226ab3bd3d8f3bca77833de5b9ac3f4a13b44acf7bec365a", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "29495b26c9504e3b1efe6c1cbc87ca5ceeb6426e869271ae45b469f73702129e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014238" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "29495b26c9504e3b1efe6c1cbc87ca5ceeb6426e869271ae45b469f73702129e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gekruid met munt#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Halloumi#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Salakis#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 363, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1014238", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1014238", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014238" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014238" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1014238", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Halloumi, van Salakis, voor, 3 € 63 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1014238" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014238" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Halloumi, van Salakis", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1014238" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013832-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 85 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013832" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013832", + "name": "Apetina original witte kaas minder vet", + "decorators": [], + "display_price": 172, + "image_id": "3826b829b4cc658344e84ef1195721cca3fb546d3754bcf5cd702719c1b90b1c", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "8c80384caa2151bf7ceafb325119413c84b8b9270d6943eaf101de98febb0008" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013832" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "8c80384caa2151bf7ceafb325119413c84b8b9270d6943eaf101de98febb0008" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Minder vet#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 172, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 215, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013832", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013832", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013832" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013832" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013832", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original witte kaas minder vet, van Apetina, van, 2 € 15 cent, voor, 1 € 72 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013832" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013832" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original witte kaas minder vet, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013832" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013856-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 86 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013856" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013856", + "name": "Apetina original witte kaas", + "decorators": [], + "display_price": 175, + "image_id": "30a6ed9b74387e6a66de320be1c3c52bcb0adf24567bbb137b19928f1914db81", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "1ad16d0aa2e6492e6f5e245c9989ef034070705308874e088f95d61a9cb1615a" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013856" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "1ad16d0aa2e6492e6f5e245c9989ef034070705308874e088f95d61a9cb1615a" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt met koemelk#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 175, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 219, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013856", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013856", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013856" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013856" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013856", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original witte kaas, van Apetina, van, 2 € 19 cent, voor, 1 € 75 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013856" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013856" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Original witte kaas, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013856" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012253-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 86 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012253" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012253", + "name": "Apetina witte kaasblokjes in olie met kruiden", + "decorators": [], + "display_price": 239, + "image_id": "6e1075d9a0d350c678dcfca45b0957d8d15c4a68479ba526f2d0652a1506d123", + "max_count": 50, + "unit_quantity": "265 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "90165873b5ae833a35a849ac38abcaedbe7e7dafdeebe607da3567e624e480de" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012253" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "90165873b5ae833a35a849ac38abcaedbe7e7dafdeebe607da3567e624e480de" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)In olie met kruiden#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 239, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 299, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "265 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012253", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012253", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012253" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012253" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012253", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes in olie met kruiden, van Apetina, van, 2 € 99 cent, voor, 2 € 39 cent, 265 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012253" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012253" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes in olie met kruiden, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012253" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1003261-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 87 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1003261" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1003261", + "name": "Apetina witte kaasblokjes", + "decorators": [], + "display_price": 255, + "image_id": "b7b8522082213f644da89831999f444a9cbf0765549f64dae393d5f6a850c606", + "max_count": 50, + "unit_quantity": "430 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "fa5052432d0d4f1b704d4e86f0f1fa3f2b959a97aa61b3bbbd6960faa0a6f769" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003261" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "fa5052432d0d4f1b704d4e86f0f1fa3f2b959a97aa61b3bbbd6960faa0a6f769" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig en kruimelig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 255, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 319, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "430 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1003261", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1003261", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003261" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003261" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1003261", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes, van Apetina, van, 3 € 19 cent, voor, 2 € 55 cent, 430 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1003261" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003261" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1003261" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016477-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 87 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016477" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016477", + "name": "Apetina witte kaasblokjes minder vet", + "decorators": [], + "display_price": 255, + "image_id": "ec9e10921285b0f1237d3ff818fa26963400b281d920162ed032f28d653251c7", + "max_count": 50, + "unit_quantity": "430 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "26623e2770081f49a28a22f7883612dc74c02c381e5e3b5461430df6ba6c484e" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016477" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "26623e2770081f49a28a22f7883612dc74c02c381e5e3b5461430df6ba6c484e" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Minder vet#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 255, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 319, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "430 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016477", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016477", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016477" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016477" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016477", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes minder vet, van Apetina, van, 3 € 19 cent, voor, 2 € 55 cent, 430 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016477" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016477" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes minder vet, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016477" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1051854-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 88 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1051854" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1051854", + "name": "Apetina witte kaasblokjes met kruiden", + "decorators": [], + "display_price": 143, + "image_id": "3e8da4cd66186bc76c0ace985edf98bf6dace421b537de44fc39f4d420a89d3d", + "max_count": 99, + "unit_quantity": "100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "95b8b59b05f2c6c261b2da08c34b31632395ba55890fddaf660d6717878eda52" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051854" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "95b8b59b05f2c6c261b2da08c34b31632395ba55890fddaf660d6717878eda52" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "20% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Met kruiden#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Apetina#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 143, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 179, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1051854", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1051854", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051854" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051854" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1051854", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes met kruiden, van Apetina, van, 1 € 79 cent, voor, 1 € 43 cent, 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1051854" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051854" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaasblokjes met kruiden, van Apetina", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1051854" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016131-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 88 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016131" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016131", + "name": "Latte Corso Italiaanse mozzarella 50+", + "decorators": [], + "display_price": 189, + "image_id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016131" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Latte Corso#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 189, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016131", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016131", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016131" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016131" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016131", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse mozzarella 50+, van Latte Corso, voor, 1 € 89 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016131" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016131" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse mozzarella 50+, van Latte Corso", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016131" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010932-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 89 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010932" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010932", + "name": "Eru plakken met cheddar", + "decorators": [], + "display_price": 179, + "image_id": "84b5acf36c53366e30d6dd9c45c758c7b831df4e2d2e3ac5e82e8b46a5423638", + "max_count": 50, + "unit_quantity": "8 plakjes" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ff8c705643b24a14c38c84cdb5c5bbfa99d7a0f4493327eb3873e9896b4ac84c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010932" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ff8c705643b24a14c38c84cdb5c5bbfa99d7a0f4493327eb3873e9896b4ac84c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Cheddar#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Eru#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 179, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "8 plakjes", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010932", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010932", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010932" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010932" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010932", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Plakken met cheddar, van Eru, voor, 1 € 79 cent, 8 plakjes", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010932" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010932" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Plakken met cheddar, van Eru", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010932" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010360-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 89 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010360" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010360", + "name": "Solo Italia parmigiano reggiano", + "decorators": [], + "display_price": 599, + "image_id": "01c2640aa73770a1accd609d2d4ff08ab8bdf67c7ad9a7d58b44ea38aa5557b7", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "265dc893251be98ed65e9c18fb768620fa2ff3d237c82144baa5bcbeb24ff00c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010360" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "265dc893251be98ed65e9c18fb768620fa2ff3d237c82144baa5bcbeb24ff00c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Solo Italia#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 599, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010360", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010360", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010360" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010360" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010360", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano, van Solo Italia, voor, 5 € 99 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010360" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010360" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano, van Solo Italia", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010360" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008572-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 90 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008572" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008572", + "name": "Solo Italia grana padano", + "decorators": [], + "display_price": 499, + "image_id": "7931c1f268ef7bdd412dd0b8530750ab03dd9b179623780434abe1deeba54656", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "041bde367813660632e9d3e32c214bf49bb5dcfe7028cb29e04f528f2ee65b1b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008572" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "041bde367813660632e9d3e32c214bf49bb5dcfe7028cb29e04f528f2ee65b1b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Grana padano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Solo Italia#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 499, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008572", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008572", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008572" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008572" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008572", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano, van Solo Italia, voor, 4 € 99 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008572" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008572" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano, van Solo Italia", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008572" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1100117-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 90 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1100117" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1100117", + "name": "Président smeltkaas met cheddar", + "decorators": [], + "display_price": 239, + "image_id": "1b047c5691c5d3c2943111c12ce2463782e05a8f836ac2bc097a74de87602af2", + "max_count": 99, + "unit_quantity": "8 plakjes" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "43a6ab0732f9fbf35057c8dfa7328f6cd6357cc6ead86d0903ef66f0ab1f42e1" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100117" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "43a6ab0732f9fbf35057c8dfa7328f6cd6357cc6ead86d0903ef66f0ab1f42e1" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Voor op de hamburger#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Smeltkaas met cheddar#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Président#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 239, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "8 plakjes", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1100117", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1100117", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100117" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100117" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1100117", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Smeltkaas met cheddar, van Président, voor, 2 € 39 cent, 8 plakjes", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1100117" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100117" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Smeltkaas met cheddar, van Président", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1100117" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1009572-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 91 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1009572" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1009572", + "name": "Emmi kaasfondue original", + "decorators": [], + "display_price": 599, + "image_id": "31d5f34d72833d0b267f9ec0edd683453986dec39be652d6d277940df32bd97b", + "max_count": 50, + "unit_quantity": "2 pers (400 g)" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "5c3dfa6c8ddbc8662bc6933cae2c80ee9e81fcb59ab5d2c5d506e915d2cd3a49" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009572" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "5c3dfa6c8ddbc8662bc6933cae2c80ee9e81fcb59ab5d2c5d506e915d2cd3a49" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Zwitersland#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Kaasfondue#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Emmi#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 599, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "2 pers (400 g)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1009572", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1009572", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009572" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009572" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1009572", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Kaasfondue original, van Emmi, voor, 5 € 99 cent, 2 pers (400 g)", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1009572" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009572" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Kaasfondue original, van Emmi", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1009572" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080598-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 91 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080598" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080598", + "name": "Emmi raclette", + "decorators": [], + "display_price": 399, + "image_id": "678b2726a97aa9876da2445a0635af2f59d22e5ef0fc906d62310ae90fbaeba1", + "max_count": 99, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "e687b196f48c5242b6dee516f4a65ae29c0e9a5beaf1b9efe87bd0ca9329342b" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080598" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "e687b196f48c5242b6dee516f4a65ae29c0e9a5beaf1b9efe87bd0ca9329342b" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zwiterse smeltkaas#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Raclette#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Emmi#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080598", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080598", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080598" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080598" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080598", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Raclette, van Emmi, voor, 3 € 99 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080598" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080598" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Raclette, van Emmi", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080598" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1060454-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 92 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1060454" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1060454", + "name": "Mozzarella", + "decorators": [], + "display_price": 89, + "image_id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811", + "max_count": 50, + "unit_quantity": "2 x 125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060454" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060454&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 6, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 2, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "alignment": "CENTER", + "distribution": "START", + "padding": { + "bottom": 2 + }, + "spacing": 2, + "type": "STACK", + "children": [ + { + "textAlignment": "END", + "textAttributes": { + "size": 12, + "weight": "SEMIBOLD", + "color": "#333333" + }, + "markdown": "#(#787570)2#(#787570)", + "type": "RICH_TEXT" + }, + { + "iconKey": "crossSmall", + "width": 6, + "height": 6, + "color": "#787570", + "type": "ICON" + } + ] + }, + { + "price": 89, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "2 x 125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1060454", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1060454", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060454" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060454" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1060454", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella, van Prijskampioen, voor, 1 € 78 cent, 2 x 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060454&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060454" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060454" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060454" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1141842-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 92 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1141842" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1141842", + "name": "Trentin italiaanse mozzarella", + "decorators": [], + "display_price": 205, + "image_id": "46c02385d6263d12abe980a2564b3f265636c2e41fcc6b2d8a5199fdb71456f6", + "max_count": 99, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "ed9a47b31a7f7414b7c0070c92652e434f51c5ee24d4a438965539c49e16992f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141842" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "ed9a47b31a7f7414b7c0070c92652e434f51c5ee24d4a438965539c49e16992f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Italiaanse mozzarella#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Trentin#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 205, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1141842", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1141842", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141842" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141842" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1141842", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse mozzarella, van Trentin, voor, 2 € 5 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141842" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141842" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Italiaanse mozzarella, van Trentin", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141842" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1013873-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 93 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1013873" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1013873", + "name": "Trentin grana padano", + "decorators": [], + "display_price": 379, + "image_id": "7279cf7f7dff96c2120219398e80de63f226ba27c1298c1a45009021be31f587", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "42712748a8862aacf34cd4285dd367b725aa4ca714da05be3016f22ee2952c43" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013873" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "42712748a8862aacf34cd4285dd367b725aa4ca714da05be3016f22ee2952c43" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Lichtzoet en kruidig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Grana padano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 379, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1013873", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1013873", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013873" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013873" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1013873", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano, van Prijskampioen, voor, 3 € 79 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1013873" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013873" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Grana padano, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1013873" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1141843-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 93 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1141843" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1141843", + "name": "Trentin ricotta", + "decorators": [], + "display_price": 199, + "image_id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11", + "max_count": 99, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141843" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Zacht en romig#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Ricotta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Trentin#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 199, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "250 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1141843", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1141843", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141843" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141843" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1141843", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Ricotta, van Trentin, voor, 1 € 99 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141843" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141843" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Ricotta, van Trentin", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141843" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1141844-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 94 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1141844" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1141844", + "name": "Trentin mascarpone", + "decorators": [], + "display_price": 169, + "image_id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969", + "max_count": 99, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141844" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141844&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mascarpone#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Trentin#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 169, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "250 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1141844", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1141844", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141844" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141844" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1141844", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Trentin, voor, 1 € 69 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1141844&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1141844" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141844" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mascarpone, van Trentin", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1141844" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1080696-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 117)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 94 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1080696" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1080696", + "name": "Parmigiano reggiano DOP 30+", + "decorators": [], + "display_price": 481, + "image_id": "a41abcf137d1a392fe292d813fb2cdb84b4e59974f8de7b4f59541fd1bbb4697", + "max_count": 99, + "unit_quantity": "180 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "3ad223e48f596cd8a9fc7131c793c49a6015b097dc45b6970d61020acd3a58c7" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080696" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "3ad223e48f596cd8a9fc7131c793c49a6015b097dc45b6970d61020acd3a58c7" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Noord-Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 481, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 535, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "180 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1080696", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1080696", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080696" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080696" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1080696", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano DOP 30+, van, 5 € 35 cent, voor, 4 € 81 cent, 180 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1080696" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080696" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Parmigiano reggiano DOP 30+", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1080696" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1010314-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 95 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1010314" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1010314", + "name": "Picnic pecorino 35+", + "decorators": [], + "display_price": 413, + "image_id": "6e5dd99bdf76b64d67552bc55fed6f950a557357ee0047a2ed7a0abe90e9785f", + "max_count": 50, + "unit_quantity": "circa 125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d2bc6667f48f922caeea191cd5b96b43e5f358da378483057bae6df2b5756ebf" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010314" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d2bc6667f48f922caeea191cd5b96b43e5f358da378483057bae6df2b5756ebf" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Pittig en zilt#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Pecorino#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 413, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 459, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "circa 125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1010314", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1010314", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010314" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010314" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1010314", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Pecorino 35+, van, 4 € 59 cent, voor, 4 € 13 cent, circa 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1010314" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010314" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Pecorino 35+", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1010314" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1011996-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 117)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 95 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1011996" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1011996", + "name": "Bio Parmigiano reggiano DOP 30+", + "decorators": [], + "display_price": 652, + "image_id": "11f6683c0d4f97148670e875b108000efe83137a2452d777e97d05c10212f55d", + "max_count": 50, + "unit_quantity": "170 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "def11eef0db3b908e2dcedb930255d280f4b61767dd5b9b34be00a2cf8d64d61" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011996" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "def11eef0db3b908e2dcedb930255d280f4b61767dd5b9b34be00a2cf8d64d61" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)DOP 30+#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 652, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 725, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "170 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1011996", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1011996", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011996" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011996" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1011996", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio Parmigiano reggiano DOP 30+, van, 7 € 25 cent, voor, 6 € 52 cent, 170 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1011996" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011996" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio Parmigiano reggiano DOP 30+", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1011996" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1002970-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 96 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1002970" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1002970", + "name": "Picnic verse feta 40+", + "decorators": [], + "display_price": 400, + "image_id": "8d00a3cb449221afcd01183c23e15a8132fc4e7af040ee91f61049dce8fc0c5d", + "max_count": 50, + "unit_quantity": "circa 167 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "4ea736ab8c05522d1b2ff808e205629bde8210b5c717977923d777ec62c643d1" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002970" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "4ea736ab8c05522d1b2ff808e205629bde8210b5c717977923d777ec62c643d1" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + }, + { + "absolutePosition": { + "bottom": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "backgroundColor": "#fbd92b", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 6 + }, + "type": "CONTAINER", + "child": { + "spacing": 4, + "height": 22, + "axis": "HORIZONTAL", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "textAttributes": { + "size": 14, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "10% korting", + "type": "RICH_TEXT" + } + ] + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 400, + "fontSize": 22, + "color": "#b40117", + "type": "PRICE" + }, + { + "price": 445, + "fontSize": 16, + "isCrossed": true, + "color": "#c9c6c3", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "circa 167 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1002970", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1002970", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002970" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002970" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1002970", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Verse feta 40+, van, 4 € 45 cent, voor, 4 € 0 cent, circa 167 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1002970" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002970" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Verse feta 40+", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1002970" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1134116-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 96 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1134116" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1134116", + "name": "Picnic witte kaas", + "decorators": [], + "display_price": 179, + "image_id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36", + "max_count": 99, + "unit_quantity": "250 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1134116" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Witte kaas#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 179, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "overflow": "hidden", + "borderRadius": 6, + "backgroundColor": "#268484", + "padding": { + "top": 1, + "bottom": 1, + "left": 5, + "right": 5 + }, + "type": "CONTAINER", + "child": { + "textAttributes": { + "size": 12, + "weight": "BOLD", + "color": "#333333" + }, + "markdown": "#(#ffffff)XL#(#ffffff)", + "type": "RICH_TEXT" + } + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "#(#268484)250 gram#(#268484)", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1134116", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1134116", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1134116" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1134116" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1134116", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaas, van Prijskampioen, voor, 1 € 79 cent, 250 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1134116" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1134116" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Witte kaas, van Prijskampioen", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1134116" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012218-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 97 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012218" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012218", + "name": "Kolios bio Griekse feta", + "decorators": [], + "display_price": 319, + "image_id": "52cf8410e1b87f727377273bb23c6b0ebcba0f044ce6da54bb3a5b7916b7f59d", + "max_count": 50, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "d49a21bee005a6b7f2efdcf53a4806df69420d115a4dd0e399b4e5c0a79949b5" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012218" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "d49a21bee005a6b7f2efdcf53a4806df69420d115a4dd0e399b4e5c0a79949b5" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kolios#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 319, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012218", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012218", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012218" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012218" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012218", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio Griekse feta, van Kolios, voor, 3 € 19 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012218" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012218" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio Griekse feta, van Kolios", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012218" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1012197-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 97 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1012197" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1012197", + "name": "Kolios Griekse feta", + "decorators": [], + "display_price": 399, + "image_id": "e51161d255adec842a3d114e32ccf533c3a6f106c72ea9e6accbeac3c29315a1", + "max_count": 50, + "unit_quantity": "200 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "46b281a1bc37c11101a9276821ab7bc34d46c06c8aa68d0729ce85a593994f9c" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012197" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "46b281a1bc37c11101a9276821ab7bc34d46c06c8aa68d0729ce85a593994f9c" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Kolios#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "200 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1012197", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1012197", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012197" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012197" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1012197", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Griekse feta, van Kolios, voor, 3 € 99 cent, 200 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1012197" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012197" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Griekse feta, van Kolios", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1012197" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1060460-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 98 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1060460" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1060460", + "name": "Deliziosa burrata", + "decorators": [], + "display_price": 249, + "image_id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3", + "max_count": 50, + "unit_quantity": "2 x 100 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060460" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "locationPin", + "width": 12, + "fallback": { + "id": "picnic-page/f38885a431765c590183da164bc4db0d4bb2214ea2067d948f94b11962413b55" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Puglia, Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Burrata#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Deliziosa#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 6, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "END", + "spacing": 2, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "alignment": "CENTER", + "distribution": "START", + "padding": { + "bottom": 2 + }, + "spacing": 2, + "type": "STACK", + "children": [ + { + "textAlignment": "END", + "textAttributes": { + "size": 12, + "weight": "SEMIBOLD", + "color": "#333333" + }, + "markdown": "#(#787570)2#(#787570)", + "type": "RICH_TEXT" + }, + { + "iconKey": "crossSmall", + "width": 6, + "height": 6, + "color": "#787570", + "type": "ICON" + } + ] + }, + { + "price": 249, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "2 x 100 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1060460", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1060460", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060460" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060460" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1060460", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata, van Deliziosa, voor, 4 € 98 cent, 2 x 100 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1060460" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060460" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata, van Deliziosa", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1060460" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1008597-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 98 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1008597" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1008597", + "name": "Deliziosa burrata truffel", + "decorators": [], + "display_price": 439, + "image_id": "f0b8f8bc72142ac6d304980a5f33145369ed5614b4350a22b34d6fdadd01a609", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "17c6242cc1c4faea210a59127d61a1c30590cab01a6b4d9c1867b2347f89ebb6" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008597" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "17c6242cc1c4faea210a59127d61a1c30590cab01a6b4d9c1867b2347f89ebb6" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Met truffel#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Burrata#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Deliziosa#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 439, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1008597", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1008597", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008597" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008597" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1008597", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata truffel, van Deliziosa, voor, 4 € 39 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1008597" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008597" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Burrata truffel, van Deliziosa", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1008597" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1007681-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 99 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1007681" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1007681", + "name": "Ponte Reale bio mozzarella di bufala", + "decorators": [], + "display_price": 279, + "image_id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1007681" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + }, + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Zuid-Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio mozzarella di bufala#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Ponte Reale#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 279, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1007681", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1007681", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1007681" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1007681" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1007681", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio mozzarella di bufala, van Ponte Reale, voor, 2 € 79 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1007681" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1007681" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio mozzarella di bufala, van Ponte Reale", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1007681" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1016104-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 99 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1016104" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1016104", + "name": "Ponte Reale mozzarella di bufala 50+", + "decorators": [], + "display_price": 369, + "image_id": "4835f2afc7a3d67d4e4fe20ac25bac97c2278301047d4fea645f2fcfdf5175f0", + "max_count": 50, + "unit_quantity": "125 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "cfdd670ecd06ab3bbf9efe22f7f0c4b4aeae28355d03bb9e3aea29b7c273059f" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016104" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "cfdd670ecd06ab3bbf9efe22f7f0c4b4aeae28355d03bb9e3aea29b7c273059f" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "top": 8, + "right": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" + }, + "activeOpacity": 0.8, + "hitSlop": { + "horizontal": 22, + "vertical": 22 + }, + "type": "TOUCHABLE", + "child": { + "backgroundColor": "#b40117", + "borderRadius": 4, + "height": 22, + "padding": { + "left": 6, + "right": 4 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "height": "100%", + "spacing": 2, + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "iconKey": "percentage", + "fallback": { + "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" + }, + "color": "#ffffff", + "width": 14, + "height": 14, + "type": "ICON" + }, + { + "textAttributes": { + "size": 13, + "weight": "REGULAR", + "color": "#ffffff", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Gemaakt in Zuid-Italië#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Ponte Reale#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 369, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "125 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1016104", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1016104", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016104" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016104" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1016104", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala 50+, van Ponte Reale, voor, 3 € 69 cent, 125 gram", + "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1016104" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016104" + } + } + }, + { + "name": "magicTap", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104" + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Mozzarella di bufala 50+, van Ponte Reale", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1016104" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1146123-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 100 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1146123" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1146123", + "name": "Dodoni feta", + "decorators": [], + "display_price": 395, + "image_id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25", + "max_count": 99, + "unit_quantity": "180 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146123" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146123&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "stars", + "width": 15, + "fallback": { + "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Nieuw#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Dodoni#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 395, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "180 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1146123", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1146123", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146123" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146123" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1146123", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Feta, van Dodoni, voor, 3 € 95 cent, 180 gram", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146123&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146123" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146123" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Feta, van Dodoni", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146123" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1146189-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 2, + "y": 100 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1146189" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1146189", + "name": "Dodoni biologische feta", + "decorators": [], + "display_price": 349, + "image_id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38", + "max_count": 99, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146189" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [ + { + "absolutePosition": { + "left": 8, + "top": 8 + }, + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "spacing": 10, + "type": "STACK", + "children": [ + { + "height": 26, + "width": 26, + "type": "CONTAINER", + "child": { + "iconKey": "bio", + "fallback": { + "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" + }, + "width": 26, + "height": 26, + "type": "ICON" + } + } + ] + } + } + ] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146189&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "stars", + "width": 15, + "fallback": { + "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Nieuw#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Bio biologische feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Dodoni#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 349, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1146189", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1146189", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146189" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146189" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1146189", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio biologische feta, van Dodoni, voor, 3 € 49 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146189&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146189" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146189" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Bio biologische feta, van Dodoni", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146189" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "selling-unit-s1146190-tile", + "size": { + "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", + "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" + }, + "analytics": { + "contexts": [ + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", + "data": { + "type": "page_tile", + "position": { + "x": 1, + "y": 101 + } + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", + "data": { + "product_id": "s1146190" + } + }, + { + "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", + "data": { + "name": "Alle resultaten - Shown", + "type": "page_tile" + } + }, + { + "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", + "data": { + "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", + "query": "kaas", + "query_canonical": "kaas", + "is_first_search_result": true, + "product_ids": [ + "s1009042", + "s1080484", + "s1013342", + "s1014773", + "s1010740", + "s1012094", + "s1009345", + "s1009019", + "s1090206", + "s1140096", + "s1013370", + "s1014816", + "s1005488", + "s1012113", + "s1008973", + "s1010386", + "s1090207", + "s1008442", + "s1013428", + "s1014842", + "s1012130", + "s1010759", + "s1014890", + "s1009066", + "s1080485", + "s1005883", + "s1008996", + "s1003063", + "s1015953", + "s1080483", + "s1010636", + "s1008468", + "s1008562", + "s1010656", + "s1012522", + "s1010676", + "s1005465", + "s1009322", + "s1009409", + "s1080486", + "s1014796", + "s1016824", + "s1009088", + "s1014937", + "s1009108", + "s1010813", + "s1070764", + "s1011269", + "s1017774", + "s1011513", + "s1049053", + "s1003849", + "s1112263", + "s1017469", + "s1009151", + "s1010229", + "s1100903", + "s1010832", + "s1070765", + "s1011288", + "s1011533", + "s1049054", + "s1017839", + "s1003797", + "s1011483", + "s1016296", + "s1009171", + "s1018188", + "s1001810", + "s1100904", + "s1010848", + "s1070766", + "s1011306", + "s1011473", + "s1049055", + "s1013842", + "s1003874", + "s1067234", + "s1009130", + "s1010884", + "s1011387", + "s1009215", + "s1009281", + "s1100902", + "s1017976", + "s1100906", + "s1100905", + "s1008513", + "s1004825", + "s1002879", + "s1011235", + "s1011751", + "s1011839", + "s1017375", + "s1075331", + "s1010992", + "s1010955", + "s1066068", + "s1010575", + "s1011551", + "s1011431", + "s1012736", + "s1010597", + "s1010900", + "s1003823", + "s1045079", + "s1004399", + "s1009366", + "s1004421", + "s1011642", + "s1011010", + "s1005928", + "s1009259", + "s1004377", + "s1100907", + "s1001822", + "s1004443", + "s1010918", + "s1009470", + "s1013461", + "s1060428", + "s1013766", + "s1011326", + "s1013748", + "s1013550", + "s1013573", + "s1013784", + "s1011347", + "s1013594", + "s1011419", + "s1009829", + "s1045119", + "s1011565", + "s1045117", + "s1008769", + "s1133564", + "s1067233", + "s1045915", + "s1014683", + "s1051273", + "s1004851", + "s1006732", + "s1016220", + "s1012712", + "s1141841", + "s1010191", + "s1016936", + "s1006926", + "s1050031", + "s1015870", + "s1015891", + "s1000384", + "s1017824", + "s1008206", + "s1003167", + "s1005235", + "s1051272", + "s1011289", + "s1045147", + "s1100210", + "s1016131", + "s1060454", + "s1141842", + "s1060460", + "s1008597", + "s1007681", + "s1016104", + "s1011271", + "s1014623", + "s1010360", + "s1008572", + "s1013873", + "s1080696", + "s1010314", + "s1011996", + "s1014176", + "s1012218", + "s1012197", + "s1002970", + "s1146123", + "s1146189", + "s1146190", + "s1013832", + "s1013856", + "s1012253", + "s1003261", + "s1016477", + "s1051854", + "s1134116", + "s1014238", + "s1011253", + "s1100841", + "s1141843", + "s1011232", + "s1100116", + "s1141844", + "s1009572", + "s1080598", + "s1010932", + "s1100117" + ], + "recipe_ids": [], + "initial_filters": [ + "Recipes", + "Actie", + "Picnic", + "Plakken", + "Stuk", + "Jong", + "Jong belegen", + "Belegen", + "Oud", + "Borrelkaas" + ], + "selected_filters": [], + "initial_sorting_strategies": [ + "RELEVANCE", + "PRICE", + "PRICE_PER_KILO", + "CONTENT" + ], + "selected_sorting_strategy": "RELEVANCE" + } + } + ] + }, + "content": { + "type": "SELLING_UNIT_TILE", + "sellingUnit": { + "id": "s1146190", + "name": "Dodoni verse feta", + "decorators": [], + "display_price": 399, + "image_id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2", + "max_count": 99, + "unit_quantity": "150 gram" + }, + "sellingUnitImageConfiguration": { + "derivativeType": "padded", + "extension": "webp", + "id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2" + } + }, + "viewComponentType": "REGULAR_SELLING_UNIT_TILE", + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "END", + "backgroundColor": "#ffffff", + "height": "100%", + "type": "STACK", + "children": [ + { + "accessible": true, + "hideFromAccessibility": true, + "width": "100%", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "onPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146190" + } + }, + "activeOpacity": 1, + "activeColor": "rgba(0, 0, 0, 0.1)", + "activeScale": 0.98, + "borderRadius": 12, + "backgroundColor": "#E3EEEE", + "type": "TOUCHABLE", + "child": { + "width": "100%", + "height": "100%", + "overflow": "hidden", + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": "NONE", + "type": "IMAGE" + }, + { + "absolutePosition": { + "top": 0, + "bottom": 0, + "left": 0, + "right": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-image", + "type": "REFERENCE_CONTAINER", + "child": { + "source": { + "id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2" + }, + "derivativeType": "padded", + "extension": "webp", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "resizeMode": "CONTAIN", + "type": "IMAGE" + } + } + }, + { + "hideFromAccessibility": true, + "height": "100%", + "width": "100%", + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "id": "selling-unit-label-container", + "presets": { + "EXPANDED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "EXPANDED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + }, + "COLLAPSED_VISIBLE": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 1, + "duration": 150 + } + }, + "COLLAPSED_HIDDEN": { + "marginBottom": { + "type": "TIMING", + "toValue": 36, + "duration": 150 + }, + "opacity": { + "type": "TIMING", + "toValue": 0, + "duration": 150 + } + } + }, + "type": "ANIMATION_CONTAINER", + "child": { + "height": "100%", + "width": "100%", + "axis": "VERTICAL", + "type": "STACK", + "children": [] + } + } + } + ] + } + } + } + }, + { + "overflow": "hidden", + "accessible": true, + "hideFromAccessibility": true, + "borderRadius": 12, + "width": "100%", + "type": "CONTAINER", + "child": { + "activeColor": "rgba(0, 0, 0, 0.05)", + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146190&show_category_action=true" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "distribution": "START", + "alignment": "START", + "spacing": 2, + "padding": { + "top": 8, + "bottom": 8, + "left": 8, + "right": 8 + }, + "type": "STACK", + "children": [ + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "height": 16, + "iconKey": "stars", + "width": 15, + "fallback": { + "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" + }, + "color": "#268484", + "type": "ICON" + }, + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "#(#268484)Nieuw#(#268484)", + "type": "RICH_TEXT" + } + ] + }, + { + "numberOfLines": 2, + "type": "RICH_TEXT", + "children": [ + { + "markdown": "#(#333333)Verse feta#(#333333) ", + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "width": "100%", + "spacing": 4, + "type": "STACK", + "children": [ + { + "textAttributes": { + "size": 14, + "weight": "REGULAR", + "color": "#333333" + }, + "numberOfLines": 1, + "markdown": "#(#333333)Dodoni#(#333333)", + "type": "RICH_TEXT" + } + ] + }, + { + "type": "CONTAINER", + "child": { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 6, + "type": "STACK", + "children": [ + { + "price": 399, + "fontSize": 22, + "color": "#333333", + "type": "PRICE" + } + ] + } + }, + { + "axis": "HORIZONTAL", + "distribution": "START", + "alignment": "CENTER", + "spacing": 4, + "type": "STACK", + "children": [ + { + "numberOfLines": 1, + "flexShrink": 1, + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#787570" + }, + "markdown": "150 gram", + "type": "RICH_TEXT" + } + ] + } + ] + } + } + }, + { + "presentationStyle": "SELLING_UNIT_REGULAR_TILE", + "sellingUnitId": "s1146190", + "color": "#268484", + "secondaryColor": "#E3EEEE", + "type": "UNAVAILABILITY_CONTAINER" + }, + { + "absolutePosition": { + "left": 0, + "top": 0, + "right": 0, + "bottom": 0 + }, + "pointerEvents": "box-none", + "type": "CONTAINER", + "child": { + "width": "100%", + "pointerEvents": "box-none", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "absolutePosition": { + "bottom": 8, + "right": 8, + "left": 8 + }, + "type": "CONTAINER", + "child": { + "color": "#268484", + "showCollapsed": false, + "showCollapsedRemoveButton": true, + "sellingUnitId": "s1146190", + "onIncrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146190" + } + }, + "onDecrementPress": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146190" + } + }, + "type": "STEPPER" + } + } + } + }, + { + "contentType": "SELLING_UNIT", + "sellingUnitId": "s1146190", + "availableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Verse feta, van Dodoni, voor, 3 € 99 cent, 150 gram", + "accessibilityHint": "voor meer informatie tik twee keer", + "accessibilityActions": [ + { + "name": "activate", + "onAction": { + "actionType": "OPEN", + "target": "app.picnic://store/page;id=product-details-page-root,id=s1146190&show_category_action=true" + } + }, + { + "name": "increment", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "ADD", + "sellingUnitId": "s1146190" + } + } + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146190" + } + } + } + ] + }, + "unavailableAccessibility": { + "accessible": true, + "accessibilityRole": "adjustable", + "accessibilityLabel": "Verse feta, van Dodoni", + "accessibilityHint": "dubbel tik om alternatief te kiezen", + "accessibilityActions": [ + { + "name": "activate" + }, + { + "name": "decrement", + "onAction": { + "actionType": "EVENT", + "action": { + "type": "SELLING_UNIT_MUTATION", + "quantity": 1, + "mutation": "REMOVE", + "sellingUnitId": "s1146190" + } + } + } + ] + }, + "type": "ACCESSIBILITY_CONTAINER" + } + ] + } + } + }, + { + "type": "PML", + "id": "missing-selling-unit-suggest-tile", + "size": { + "crossAxis": "6g" + }, + "pml": { + "pmlVersion": "0.1.0", + "images": {}, + "component": { + "onPress": { + "actionType": "OPEN", + "target": "app.picnic://store/product-suggestion" + }, + "type": "TOUCHABLE", + "child": { + "axis": "VERTICAL", + "width": "100%", + "height": "100%", + "backgroundColor": "#ffffff", + "type": "STACK", + "children": [ + { + "width": "100%", + "borderRadius": 12, + "backgroundColor": "#f0e8dd", + "aspectRatio": 1, + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "width": "100%", + "height": "100%", + "type": "STACK", + "children": [ + { + "source": { + "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" + }, + "width": "100%", + "height": "100%", + "resizeMode": "COVER", + "placeholder": { + "resizeMode": "CONTAIN", + "icon": "loadingCarrotTranslucentPadding" + }, + "type": "IMAGE" + }, + { + "width": "100%", + "height": "100%", + "absolutePosition": { + "top": 0, + "left": 0, + "right": 0, + "bottom": 0 + }, + "type": "CONTAINER", + "child": { + "axis": "VERTICAL", + "height": "100%", + "width": "100%", + "distribution": "CENTER", + "alignment": "CENTER", + "type": "STACK", + "children": [ + { + "placeholder": "NONE", + "resizeMode": "CONTAIN", + "source": { + "id": "picnic-page/9c669031f917e72ae7134634680b08c8626b8a4022bec455a633c2d8ade4500c" + }, + "width": 96, + "height": 120, + "type": "IMAGE" + } + ] + } + } + ] + } + }, + { + "width": "100%", + "height": 70, + "axis": "VERTICAL", + "padding": { + "bottom": 8, + "left": 8, + "top": 8, + "right": 8 + }, + "spacing": 2, + "type": "STACK", + "children": [ + { + "markdown": "#(#9C6D2B)Mis je iets?#(#9C6D2B)", + "textAttributes": { + "size": 12, + "weight": "MEDIUM", + "color": "#333333" + }, + "type": "RICH_TEXT" + }, + { + "type": "RICH_TEXT", + "children": [ + { + "textAttributes": { + "size": 16, + "weight": "MEDIUM", + "color": "#333333" + }, + "markdown": "Vraag het aan ", + "type": "RICH_TEXT" + }, + { + "textAttributes": { + "size": 16, + "weight": "REGULAR", + "color": "#333333", + "family": "PicnicSymbols" + }, + "markdown": ">", + "type": "RICH_TEXT" + } + ] + } + ] + } + ] + } + } + } + } + ] + } + ] + } + ] + } + ] + } + }, + "error": {} +} \ No newline at end of file diff --git a/test.py b/test.py new file mode 100644 index 0000000..ba0b956 --- /dev/null +++ b/test.py @@ -0,0 +1,43 @@ +import requests +import json +from python_picnic_api import PicnicAPI +from collections import deque + +picnic = PicnicAPI(username='fam.paul@outlook.com', password='Nan0f00d!', country_code="NL") +raw_results = picnic._get("/pages/search-page-results?search_term=kaas", add_picnic_headers=True) +#with open('raw_results.json', 'w', encoding='utf-8') as f: +# json.dump(raw_results, f, ensure_ascii=False, indent=4) + +print("Raw results saved to 'raw_results.json'") + +search_results = [] + +def extract_articles(data): + articles = [] + stack = deque([data.get('body', {})]) + + while stack: + item = stack.pop() + + if isinstance(item, dict): + content = item.get('content', {}) + if content.get('type') == 'SELLING_UNIT_TILE' and 'sellingUnit' in content: + articles.append(content['sellingUnit']) + + child = item.get('child') + if child: + stack.append(child) + + children = item.get('children', []) + stack.extend(reversed(children)) + + elif isinstance(item, list): + stack.extend(reversed(item)) + + return articles + +# Assuming raw_results is your API response +search_results = extract_articles(raw_results) + +print(len(search_results)) # Print the number of articles found +print(search_results[:5]) # Print the first 5 articles (if any) \ No newline at end of file From aa6ca4054bc65757651b8963f69097d7f547ca66 Mon Sep 17 00:00:00 2001 From: Maarten Paul Date: Mon, 23 Sep 2024 12:34:49 +0200 Subject: [PATCH 6/9] Update helper.py --- python_picnic_api/helper.py | 23 ----------------------- 1 file changed, 23 deletions(-) diff --git a/python_picnic_api/helper.py b/python_picnic_api/helper.py index 8cf290c..bb800b5 100644 --- a/python_picnic_api/helper.py +++ b/python_picnic_api/helper.py @@ -82,29 +82,6 @@ def get_image(id: str, size="regular", suffix="webp"): assert size in sizes, "size must be one of: " + ", ".join(sizes) return f"{IMAGE_BASE_URL}/{id}/{size}.{suffix}" - -def _extract_search_results(raw_results: Dict[str, Any]) -> List[Dict[str, Any]]: - """Extract search results from a nested dictionary structure returned by Picnic search.""" - search_results = [] - - for section in raw_results.get("body", {}).get("children", []): - for item in section.get("children", []): - content = item.get("content", {}) - if "selling_unit" in content: - sole_article_ids = SOLE_ARTICLE_ID_PATTERN.findall( - json.dumps(item.get("pml", {})) - ) - sole_article_id = sole_article_ids[0] if sole_article_ids else None - - result_entry = { - **content["selling_unit"], - "sole_article_id": sole_article_id, - } - search_results.append(result_entry) - - return search_results - - def _extract_search_results(raw_results, max_items: int = 10): """Extract search results from the nested dictionary structure returned by Picnic search. Number of max items can be defined to reduce excessive nested search""" From 3f9505dadababe4a0a48990db5d91dee5463857c Mon Sep 17 00:00:00 2001 From: Maarten Paul Date: Wed, 25 Sep 2024 16:50:43 +0200 Subject: [PATCH 7/9] Delete raw_results.json --- raw_results.json | 156539 -------------------------------------------- 1 file changed, 156539 deletions(-) delete mode 100644 raw_results.json diff --git a/raw_results.json b/raw_results.json deleted file mode 100644 index ddf67cb..0000000 --- a/raw_results.json +++ /dev/null @@ -1,156539 +0,0 @@ -{ - "id": "search-page-results", - "presentation": { - "type": "FULL_SCREEN", - "style": { - "backgroundColor": "#ffffff" - } - }, - "body": { - "type": "STATE_BOUNDARY", - "id": "GlobalState", - "state": {}, - "child": { - "id": "root", - "analytics": { - "contexts": [ - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "size": { - "crossAxis": "SCREEN_WIDTH" - }, - "layout": { - "type": "FLOW", - "axis": "VERTICAL", - "overflow": "HIDDEN" - }, - "type": "BLOCK", - "children": [ - { - "id": "search-page-header", - "size": { - "crossAxis": "SCREEN_WIDTH", - "mainAxis": 48 - }, - "layout": { - "type": "FLOW", - "axis": "HORIZONTAL", - "padding": { - "top": 4, - "bottom": 12, - "left": 12, - "right": 12 - }, - "spacing": { - "mainAxis": 8 - } - }, - "type": "BLOCK", - "children": [ - { - "type": "PML", - "id": "search-header-sorting-button", - "size": { - "crossAxis": 50, - "mainAxis": 36, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=search-sort-options-root,presentation-mode=MODAL_OVER_CONTEXT,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&term=kaas&sorting_options_ids=RELEVANCE&sorting_options_ids=PRICE&sorting_options_ids=PRICE_PER_KILO&sorting_options_ids=CONTENT&sorting_options_names=Relevant%20voor%20jou&sorting_options_names=Laagste%20prijs&sorting_options_names=Laagste%20prijs%20per%20kilo&sorting_options_names=Kleinste%20verpakking&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "width": 16, - "height": 16, - "iconKey": "swap", - "color": "#333333", - "type": "ICON" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-recipe-toggle", - "size": { - "crossAxis": 50, - "mainAxis": 100, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&is_recipe=true&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 8, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 20, - "borderRadius": 5, - "backgroundColor": "#4B8505", - "padding": { - "left": 4, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "distribution": "CENTER", - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#ffffff)118#(#ffffff)", - "type": "RICH_TEXT" - } - ] - } - }, - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Recepten#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-particularities.Actie", - "size": { - "crossAxis": 50, - "mainAxis": 76, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=particularities.Actie&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 8, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 20, - "borderRadius": 5, - "backgroundColor": "#fbd92b", - "padding": { - "left": 4, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "distribution": "CENTER", - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)%#(#000000)", - "type": "RICH_TEXT" - } - ] - } - }, - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Actie#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-brand.Picnic", - "size": { - "crossAxis": 50, - "mainAxis": 84, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=brand.Picnic&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Picnic#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-shape.Plakken", - "size": { - "crossAxis": 50, - "mainAxis": 92, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=shape.Plakken&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Plakken#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-shape.Stuk", - "size": { - "crossAxis": 50, - "mainAxis": 68, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=shape.Stuk&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Stuk#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-article_type.Jong", - "size": { - "crossAxis": 50, - "mainAxis": 68, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Jong&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Jong#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-article_type.Jong belegen", - "size": { - "crossAxis": 50, - "mainAxis": 132, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Jong%20belegen&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Jong belegen#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-article_type.Belegen", - "size": { - "crossAxis": 50, - "mainAxis": 92, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Belegen&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Belegen#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-article_type.Oud", - "size": { - "crossAxis": 50, - "mainAxis": 60, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=article_type.Oud&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Oud#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - }, - { - "type": "PML", - "id": "search-header-filter-group.Borrelkaas", - "size": { - "crossAxis": 50, - "mainAxis": 116, - "isMainAxisEstimated": true - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "method": "REPLACE", - "target": "app.picnic://store/page;id=search-page-results,search_id=02d582c9-0b23-4782-95b1-37afeceb4ea1&search_term=kaas&selected_filters=group.Borrelkaas&selected_sorting=RELEVANCE&initial_filters=Recipes&initial_filters=Actie&initial_filters=Picnic&initial_filters=Plakken&initial_filters=Stuk&initial_filters=Jong&initial_filters=Jong%20belegen&initial_filters=Belegen&initial_filters=Oud&initial_filters=Borrelkaas&is_not_first_search_result=true" - }, - "type": "TOUCHABLE", - "child": { - "borderRadius": 8, - "height": 32, - "backgroundColor": "#f8f5f2", - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "alignment": "CENTER", - "padding": { - "left": 12, - "right": 12 - }, - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#000000)Borrelkaas#(#000000)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - } - ] - }, - { - "id": "search-results-selling-units-section", - "layout": { - "type": "FLOW", - "axis": "VERTICAL", - "spacing": { - "mainAxis": 4, - "crossAxis": 0 - }, - "padding": { - "left": 8, - "right": 8, - "top": 4, - "bottom": 4 - } - }, - "size": { - "crossAxis": "12g", - "mainAxis": "CONTAINER_HEIGHT - 48" - }, - "type": "BLOCK", - "children": [ - { - "id": "search-result-section", - "layout": { - "type": "FLOW", - "axis": "VERTICAL" - }, - "size": { - "crossAxis": "12g" - }, - "type": "BLOCK", - "children": [ - { - "id": "structured-selling-unit-search-result", - "layout": { - "type": "FLOW", - "axis": "VERTICAL", - "spacing": { - "mainAxis": 4, - "crossAxis": 4 - } - }, - "size": { - "crossAxis": "12g" - }, - "type": "BLOCK", - "children": [ - { - "id": "rfy-group-header", - "layout": { - "type": "FLOW", - "axis": "VERTICAL" - }, - "size": { - "crossAxis": "12g" - }, - "type": "BLOCK", - "children": [ - { - "type": "PML", - "id": "header-Opnieuw bestellen", - "size": { - "mainAxis": 34, - "crossAxis": "12g" - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "accessible": true, - "width": "100%", - "padding": { - "bottom": 6, - "left": 4, - "right": 12, - "top": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "distribution": "END", - "type": "STACK", - "children": [ - { - "textAlignment": "START", - "numberOfLines": 1, - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#333333)Opnieuw bestellen#(#333333)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - ] - }, - { - "type": "PML", - "id": "selling-unit-s1070765-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 1 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1070765" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Opnieuw bestellen - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1070765", - "name": "Jong belegen kaas 48+", - "decorators": [], - "display_price": 579, - "image_id": "d3bb1a9afa6214848c1eb3e853e89514cecc5d5d5b9830b4f67fe0c9fdebbc44", - "max_count": 99, - "unit_quantity": "Plakken (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "4e3ae8b9b9a3ed543d0e3654bddb9a2b3b445dbb2d8c8e92688449f2170ca423" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070765" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "4e3ae8b9b9a3ed543d0e3654bddb9a2b3b445dbb2d8c8e92688449f2170ca423" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 579, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (400 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1070765", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1070765", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070765" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070765" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1070765", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 5 € 79 cent, Plakken (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070765" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070765" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070765" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070765" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1066068-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 1 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1066068" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Opnieuw bestellen - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1066068", - "name": "Leerdammer Lightlife kaas 35+", - "decorators": [], - "display_price": 255, - "image_id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b", - "max_count": 50, - "unit_quantity": "2 x Plakken (160 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1066068" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "2d7064a914d1c54d8deec878d4985d58d45c20683d535283ec4e4b8cd06d580b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)42% minder vet#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Lightlife 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Leerdammer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 6, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 2, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "alignment": "CENTER", - "distribution": "START", - "padding": { - "bottom": 2 - }, - "spacing": 2, - "type": "STACK", - "children": [ - { - "textAlignment": "END", - "textAttributes": { - "size": 12, - "weight": "SEMIBOLD", - "color": "#333333" - }, - "markdown": "#(#787570)2#(#787570)", - "type": "RICH_TEXT" - }, - { - "iconKey": "crossSmall", - "width": 6, - "height": 6, - "color": "#787570", - "type": "ICON" - } - ] - }, - { - "price": 255, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "2 x Plakken (160 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1066068", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1066068", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1066068" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1066068" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1066068", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Lightlife kaas 35+, van Leerdammer, voor, 5 € 10 cent, 2 x Plakken (160 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1066068" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1066068" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1066068" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Lightlife kaas 35+, van Leerdammer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1066068" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014842-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 2 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014842" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Opnieuw bestellen - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014842", - "name": "Picnic belegen kaas 48+", - "decorators": [], - "display_price": 645, - "image_id": "6860e3759a639ca6cabc467b99f5f167218e922b72b074ff64b5f9faf1690793", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d58d52dba4e2a65cac08471fb115cbfcf477c83c7f80f5e121e7088f1c2c2dde" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014842" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/12fc85de2058c976406688937eef341ae0ccb65815f68b4b0400f208f0901dd9" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d58d52dba4e2a65cac08471fb115cbfcf477c83c7f80f5e121e7088f1c2c2dde" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 645, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014842", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014842", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014842" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014842" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014842", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 6 € 45 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014842" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014842" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014842" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014842" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "id": "more-group-header", - "layout": { - "type": "FLOW", - "axis": "VERTICAL" - }, - "size": { - "crossAxis": "12g" - }, - "type": "BLOCK", - "children": [ - { - "type": "PML", - "id": "header-Alle resultaten", - "size": { - "mainAxis": 34, - "crossAxis": "12g" - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "accessible": true, - "width": "100%", - "padding": { - "bottom": 6, - "left": 4, - "right": 12, - "top": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "distribution": "END", - "type": "STACK", - "children": [ - { - "textAlignment": "START", - "numberOfLines": 1, - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#333333)Alle resultaten#(#333333)", - "type": "RICH_TEXT" - } - ] - } - } - } - } - ] - }, - { - "type": "PML", - "id": "selling-unit-s1010832-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 3 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010832" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010832", - "name": "Picnic jong belegen kaas 48+", - "decorators": [], - "display_price": 309, - "image_id": "1cf4b07bfb6e6c2be76749690801678ea3164b00a10e05071642bd4ff5d2ab54", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c08d32615cce17a6eb14315dd997ff1410bf8d766ac458f4b72e848508e2dcac" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010832" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/5854f4ec66105bcdea4e7484bae8e926e1112b3db663ee7ae7b480f425f1aab3" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c08d32615cce17a6eb14315dd997ff1410bf8d766ac458f4b72e848508e2dcac" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 309, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010832", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010832", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010832" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010832" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010832", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 3 € 9 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010832" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010832" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010832" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010832" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011288-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 3 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011288" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011288", - "name": "Picnic Bio jong belegen 48+", - "decorators": [], - "display_price": 379, - "image_id": "0b56fec9393c2fbc347105a906476b5bc7e261644880149eb9faf3a032a567b6", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "495a9fba10b29ebb28d1866f57c6fc59c6dd7cb52618e506986446d06bc56fca" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011288" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/94f5b53158cbe1ebc97763527537dc72ae65fb70d059a5b292c125dfcb40c8aa" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "495a9fba10b29ebb28d1866f57c6fc59c6dd7cb52618e506986446d06bc56fca" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 379, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011288", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011288", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011288" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011288" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011288", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen 48+, van Picnic, voor, 3 € 79 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011288" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011288" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011288" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011288" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011483-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 4 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011483" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011483", - "name": "Picnic jong belegen kaas 48+", - "decorators": [], - "display_price": 399, - "image_id": "a4ad2f3df58c5d8db650bc25b29e6b5f4c9beaf74d8597d238541e11bc7aec10", - "max_count": 50, - "unit_quantity": "Plakken (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "10ae7efaa8539481c37b3de6c68c7ea4a73c98d85e36c26293e2ed03d3f7e82a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011483" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "10ae7efaa8539481c37b3de6c68c7ea4a73c98d85e36c26293e2ed03d3f7e82a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (400 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011483", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011483", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011483" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011483" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011483", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen, voor, 3 € 99 cent, Plakken (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011483" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011483" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011483" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011483" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010813-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 4 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010813" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010813", - "name": "Picnic jonge kaas 48+", - "decorators": [], - "display_price": 295, - "image_id": "7322565586016e6a07f413a313ab85ab197bcfa3c9b11653ff9f5787d4c05390", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7011627fd1f62cc1dd1b41cc7ef130200322f211161c4c21631965300b692a97" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010813" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/318537159ce60c457ad3e17b07c1d9e92cc30160c8be0e382c703b8e73e0dd55" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7011627fd1f62cc1dd1b41cc7ef130200322f211161c4c21631965300b692a97" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 295, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010813", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010813", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010813" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010813" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010813", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Picnic, voor, 2 € 95 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010813" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010813" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010813" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010813" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1070764-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 5 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1070764" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1070764", - "name": "Jonge kaas 48+", - "decorators": [], - "display_price": 529, - "image_id": "8c564571d61ea73de1a3c37cc5c45e8f9159080c65ec654912af436a245d19d0", - "max_count": 99, - "unit_quantity": "Plakken (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3d11b2d6994a548767fb5303869b398cae16c815690178b4df1a63412865fc04" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070764" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3d11b2d6994a548767fb5303869b398cae16c815690178b4df1a63412865fc04" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 529, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (400 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1070764", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1070764", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070764" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070764" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1070764", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Picnic, voor, 5 € 29 cent, Plakken (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070764" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070764" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070764" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070764" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011269-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 5 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011269" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011269", - "name": "Picnic Bio jong 48+", - "decorators": [], - "display_price": 335, - "image_id": "888126fa4e34d0d41288f3d351ac91174516724a91e20e1229060719f1e4aa45", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b44d567d6b66d21670cb542e193d2091d1450badf3edf3816340da35b3068fa0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011269" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/729f1ecb261cab8622b5ed5d51b39cffd37fa1d3c5fc96115aad1a2f28f8b80e" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b44d567d6b66d21670cb542e193d2091d1450badf3edf3816340da35b3068fa0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Licht pittig en vol#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 335, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011269", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011269", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011269" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011269" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011269", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong 48+, van Picnic, voor, 3 € 35 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011269" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011269" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011269" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011269" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1112263-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 6 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1112263" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1112263", - "name": "Picnic tostikaas jong 48+", - "decorators": [], - "display_price": 509, - "image_id": "fcaa105ac8b000713a699e021f3aae8130be469faa9a2c46436f49d070a735cb", - "max_count": 99, - "unit_quantity": "Plakken (500g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "86bc687f627788808a9b21de52bbc2b0c1e125b171712792705fd190a4f86c7d" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1112263" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "86bc687f627788808a9b21de52bbc2b0c1e125b171712792705fd190a4f86c7d" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "15% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Tostikaas jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 509, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 599, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (500g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1112263", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1112263", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1112263" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1112263" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1112263", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Tostikaas jong 48+, van Picnic, van, 5 € 99 cent, voor, 5 € 9 cent, Plakken (500g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1112263" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1112263" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1112263" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Tostikaas jong 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1112263" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010848-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 6 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010848" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010848", - "name": "Picnic belegen kaas 48+", - "decorators": [], - "display_price": 339, - "image_id": "6bddb4ac57044a010bc0e38798263b2f0a975f5b372a45644bd845539e5ba34f", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "fe4436c38152b689a5ce78a7b663537f28cdba79138297934abb552477465cbe" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010848" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/a3edee81347232ecd3369db945a931f004e79d419aa3571ec44eb99a12ca4295" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "fe4436c38152b689a5ce78a7b663537f28cdba79138297934abb552477465cbe" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 339, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010848", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010848", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010848" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010848" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010848", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 3 € 39 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010848" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010848" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010848" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010848" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1070766-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 7 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1070766" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1070766", - "name": "Belegen kaas 48+", - "decorators": [], - "display_price": 599, - "image_id": "666cc13b2410a27694e3e9cad16bfec3cbbd67173c41908865afc03db25f16fb", - "max_count": 99, - "unit_quantity": "Plakken (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "0968549e3ead61a9aa5b3f735fc25e8e98add74b2633778b8459c5507d560074" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070766" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "0968549e3ead61a9aa5b3f735fc25e8e98add74b2633778b8459c5507d560074" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 599, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (400 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1070766", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1070766", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070766" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070766" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1070766", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic, voor, 5 € 99 cent, Plakken (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1070766" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070766" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1070766" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1070766" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011306-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 7 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011306" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011306", - "name": "Picnic Bio belegen 48+", - "decorators": [], - "display_price": 369, - "image_id": "3c7033f96e708dfc496d3d80d929837ef8316adac6dd329eaabe617adb61d72e", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "0e66612456e0d1952aa530c03f3ef6aacbfdc498a0656200336df0a7fcf05d4d" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011306" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/dd153a7526d7add0259dde466a4fa2c3f74275c5b3c7d33b3ffc4dc3e0279222" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "0e66612456e0d1952aa530c03f3ef6aacbfdc498a0656200336df0a7fcf05d4d" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Licht romig en licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 369, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011306", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011306", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011306" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011306" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011306", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen 48+, van Picnic, voor, 3 € 69 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011306" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011306" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011306" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011306" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010992-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 8 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010992" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010992", - "name": "Picnic jong belegen kaas 30+", - "decorators": [], - "display_price": 305, - "image_id": "32bbdf9e740450d2aa16b0d63a45885c40db3a5ed7d421d1f04ebaac5ecc14a8", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e49c46c05ded1f93243512915be08a6995ebe27ae782420667da3df50b370d11" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010992" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/36974572e8b66f1d34321648361ff8ca5ff7957cbecd4e7ddac38c309f7b08c2" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e49c46c05ded1f93243512915be08a6995ebe27ae782420667da3df50b370d11" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 305, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010992", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010992", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010992" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010992" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010992", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Prijskampioen, voor, 3 € 5 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010992" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010992" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010992" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010992" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010955-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 8 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010955" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010955", - "name": "Picnic jonge kaas 20+", - "decorators": [], - "display_price": 319, - "image_id": "40fe1821c5031370e7715fb1b129f82e87589d189875ce156399b0c5ef211764", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e41186de2b847a12820fafc4ba78475e0dd8d86ac6240f17e928b9768c493a2c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010955" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/ed69e79bcdcf16603f127844abf046557c56e13f434d96f87585ff5e087db595" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e41186de2b847a12820fafc4ba78475e0dd8d86ac6240f17e928b9768c493a2c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong 20+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010955", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010955", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010955" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010955" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010955", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 20+, van Picnic, voor, 3 € 19 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010955" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010955" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010955" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 20+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010955" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010900-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 9 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010900" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010900", - "name": "Picnic oude kaas 48+", - "decorators": [], - "display_price": 415, - "image_id": "45b282054770fb71952bba7cec571c1f917e898128361769e6f662f59bb1e2ac", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f199163c977b79c18f10d87d52952dc7cf03fc9a9839d1d7a8ea19a5bb9e1be9" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010900" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/36fde4306f82c52ded44d02cb92b21e56c179a1381f12cd79a1922cf98e62808" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f199163c977b79c18f10d87d52952dc7cf03fc9a9839d1d7a8ea19a5bb9e1be9" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 415, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010900", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010900", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010900" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010900" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010900", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Picnic, voor, 4 € 15 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010900" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010900" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010900" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010900" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010918-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 9 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010918" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010918", - "name": "Picnic jong belegen komijnekaas 48+", - "decorators": [], - "display_price": 339, - "image_id": "790ab77e1916855e0e38f23acae494d34f313ef71edcbd1701c8773ea65eeb73", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f84139cde2618261b28381091e173072488a298f4a91bf9f7d4208857f9ce5f7" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010918" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/8215bbec8cb91f2a6421442523b3bdf9dc77caf025d5bbec4076205d49a8d603" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f84139cde2618261b28381091e173072488a298f4a91bf9f7d4208857f9ce5f7" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen komijn#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 339, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010918", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010918", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010918" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010918" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010918", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic, voor, 3 € 39 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010918" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010918" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010918" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010918" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010884-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 10 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010884" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010884", - "name": "Picnic extra belegen kaas 48+", - "decorators": [], - "display_price": 375, - "image_id": "b222f979065fa864c488cc430b2c4b38a89958b0d8401ff2dc8a9e6111e0bb42", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e181ec0ce4f3c1751357a36ee56dd72f5ff041ddd9772ec2f0e0854d2155f9e0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010884" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/2db4250237dabe738f8b09ef6256b48ae88617e9672aeb3b2e00b583e3335acf" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e181ec0ce4f3c1751357a36ee56dd72f5ff041ddd9772ec2f0e0854d2155f9e0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Tijdelijke verpakking#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 375, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010884", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010884", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010884" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010884" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010884", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Picnic, voor, 3 € 75 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010884" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010884" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010884" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010884" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011010-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 10 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011010" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011010", - "name": "Picnic jong belegen geitenkaas 50+", - "decorators": [], - "display_price": 479, - "image_id": "700772d80df8fd20d7fc270965d8f45305c01bf82ed441f6c96c50e970daf9ff", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "321c310d38483939c76306b82792e49fe0c569f8b9c4a2d09e1f5e3ca2ba3313" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011010" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/41073d26cab67f88da181e579f87b2b8d40d1dbec59a6873f65b4f82134a8f44" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "321c310d38483939c76306b82792e49fe0c569f8b9c4a2d09e1f5e3ca2ba3313" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen geit#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 479, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011010", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011010", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011010" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011010" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011010", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen geitenkaas 50+, van Picnic, voor, 4 € 79 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011010" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011010" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011010" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen geitenkaas 50+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011010" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011533-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 11 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011533" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011533", - "name": "Beemster jong belegen kaas 48+", - "decorators": [], - "display_price": 329, - "image_id": "9cf8f9721faee231265c4d58502629ca0ac70eff10506cc6e06952295d473bd6", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "bf7f5cf1f73e6ebd5d9e85cdf3d4157b7c61ae79b873eafd457479af2fef59c2" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011533" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "bf7f5cf1f73e6ebd5d9e85cdf3d4157b7c61ae79b873eafd457479af2fef59c2" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Smeuïg en mild#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 329, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011533", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011533", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011533" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011533" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011533", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011533" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011533" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011533" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011533" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1049054-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 11 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1049054" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1049054", - "name": "Beemster jong belegen 48+ voordeelverpakking", - "decorators": [], - "display_price": 489, - "image_id": "b452943a1d4b12afae1ec5139b74fee077ad9bdc76f74e44fd667f3db31a3f14", - "max_count": 99, - "unit_quantity": "Plakken (250 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "528220b096e6b1fe259d124ee1154d4fc5dbd386e22f315aadff0e126bafa891" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049054" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "528220b096e6b1fe259d124ee1154d4fc5dbd386e22f315aadff0e126bafa891" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Smeuïg en mild#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 489, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (250 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1049054", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1049054", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049054" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049054" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1049054", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen 48+ voordeelverpakking, van Beemster, voor, 4 € 89 cent, Plakken (250 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049054" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049054" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049054" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen 48+ voordeelverpakking, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049054" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011513-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 12 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011513" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011513", - "name": "Beemster jonge kaas 48+", - "decorators": [], - "display_price": 319, - "image_id": "62d85908417c00cc252164f7e55b698fa079a7d71e51e39b4216c9c0edd02425", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f1c7576fd68c7480e327744e44b3423fa4fa8de3ce474de61142fc79c8f4446c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011513" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f1c7576fd68c7480e327744e44b3423fa4fa8de3ce474de61142fc79c8f4446c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011513", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011513", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011513" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011513" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011513", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Beemster, voor, 3 € 19 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011513" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011513" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011513" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011513" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1049053-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 12 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1049053" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1049053", - "name": "Beemster jong 48+ voordeelverpakking", - "decorators": [], - "display_price": 479, - "image_id": "930884f25a68e1e0ba9efff27eeae73914f6747abe844d950525573ca669bfd6", - "max_count": 99, - "unit_quantity": "Plakken (250 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "a9f118fe9bde3afae7b2b811d599bb658ca76e3c6b1e2e28c67fd74b504ca8cb" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049053" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "a9f118fe9bde3afae7b2b811d599bb658ca76e3c6b1e2e28c67fd74b504ca8cb" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 479, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (250 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1049053", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1049053", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049053" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049053" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1049053", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong 48+ voordeelverpakking, van Beemster, voor, 4 € 79 cent, Plakken (250 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049053" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049053" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049053" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong 48+ voordeelverpakking, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049053" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011473-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 13 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011473" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011473", - "name": "Beemster belegen kaas 48+", - "decorators": [], - "display_price": 329, - "image_id": "233995e38c9df888b4b9aae680a1d0d14d9110e6356e7d19cded39292d7fae6f", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "50644e1f46951f6ea9886fe8e1b98bb35019617ea36e433c7f63ab3d03a503bd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011473" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "50644e1f46951f6ea9886fe8e1b98bb35019617ea36e433c7f63ab3d03a503bd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 329, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011473", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011473", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011473" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011473" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011473", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011473" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011473" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011473" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011473" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1049055-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 13 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1049055" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1049055", - "name": "Beemster belegen 48+ voordeelverpakking", - "decorators": [], - "display_price": 499, - "image_id": "922fac9e98d19e05f5ff493aec298b5ef5a13a1a94417b0dc4fb3738239e0102", - "max_count": 99, - "unit_quantity": "Plakken (250 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1cdb3f121b8e6bb0f795ba2b1b18347367b25c12bbd9bbf51aada29b84532313" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049055" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1cdb3f121b8e6bb0f795ba2b1b18347367b25c12bbd9bbf51aada29b84532313" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 499, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (250 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1049055", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1049055", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049055" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049055" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1049055", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen 48+ voordeelverpakking, van Beemster, voor, 4 € 99 cent, Plakken (250 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1049055" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049055" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1049055" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen 48+ voordeelverpakking, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1049055" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010575-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 14 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010575" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010575", - "name": "Beemster oude kaas 30+", - "decorators": [], - "display_price": 365, - "image_id": "a42196c67be0e8e191767adfc7b84f7385be3c9bc38cee51adf3ad8036b4e0b1", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "46f9e635cdb920404e1a2449089af08239460c2d06f43d4047915f43090e3900" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010575" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "46f9e635cdb920404e1a2449089af08239460c2d06f43d4047915f43090e3900" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Rijk en krachtig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 365, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010575", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010575", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010575" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010575" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010575", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 30+, van Beemster, voor, 3 € 65 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010575" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010575" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010575" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 30+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010575" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011551-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 14 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011551" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011551", - "name": "Beemster belegen kaas 30+", - "decorators": [], - "display_price": 329, - "image_id": "8a97067f89d3f693d8ef627ad4350f02314b6e0fc64422675d76df9c17319e91", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f14c77879e2e955dc7b852318944bf8d71504b30cf52ac8732da9dbb92a046c8" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011551" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f14c77879e2e955dc7b852318944bf8d71504b30cf52ac8732da9dbb92a046c8" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Mild en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 329, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011551", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011551", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011551" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011551" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011551", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Beemster, voor, 3 € 29 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011551" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011551" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011551" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011551" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011431-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 15 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011431" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011431", - "name": "Beemster jong belegen kaas 30+", - "decorators": [], - "display_price": 335, - "image_id": "ba146013a858403b6102762a79954cbce8300a0ee59855907b643a38f67a896f", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b67a88d50cdbd3b09535f96437a32a05fc66f1a6787f7f5e30c5fb41225829b7" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011431" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b67a88d50cdbd3b09535f96437a32a05fc66f1a6787f7f5e30c5fb41225829b7" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en mild#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 335, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011431", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011431", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011431" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011431" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011431", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Beemster, voor, 3 € 35 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011431" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011431" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011431" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011431" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010597-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 15 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010597" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010597", - "name": "Beemster oude kaas 48+", - "decorators": [], - "display_price": 359, - "image_id": "9c677db9730939c289d7510bbf57384dde9a036aa233defef5a359996383980b", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b012d9707ce8a0070e5d9acdfa586661b33f17103aad83f729a84b939e9438f2" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010597" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b012d9707ce8a0070e5d9acdfa586661b33f17103aad83f729a84b939e9438f2" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Rijk en pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 359, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010597", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010597", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010597" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010597" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010597", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Beemster, voor, 3 € 59 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010597" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010597" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010597" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010597" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011387-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 16 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011387" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011387", - "name": "Beemster extra belegen kaas 48+", - "decorators": [], - "display_price": 349, - "image_id": "5c64688d3e20a06062d292dd6940eb90f7df9d51ba37c2f662c3dc9bae8987cb", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "514db691198e1f5ab0bbec09e1abd0507af34a230ff80af007b1c4d7c280183a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011387" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "514db691198e1f5ab0bbec09e1abd0507af34a230ff80af007b1c4d7c280183a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Beemster#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 349, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011387", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011387", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011387" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011387" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011387", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Beemster, voor, 3 € 49 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011387" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011387" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011387" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Beemster", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011387" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017839-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 16 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017839" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017839", - "name": "Maaslander jong belegen kaas 50+", - "decorators": [], - "display_price": 299, - "image_id": "dcd26bda01af3dd07beba9fcbdaec9cae78c98ba9e54ce42714c5f916d0c7de4", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "31e3af848dd210694c98d3353f6368b14995ba6de50a5f9bef095f0723d42277" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017839" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "31e3af848dd210694c98d3353f6368b14995ba6de50a5f9bef095f0723d42277" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Volromig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Maaslander#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 299, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017839", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017839", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017839" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017839" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017839", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 50+, van Maaslander, voor, 2 € 99 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017839" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017839" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017839" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 50+, van Maaslander", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017839" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017774-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 17 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017774" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017774", - "name": "Maaslander jonge kaas", - "decorators": [], - "display_price": 289, - "image_id": "9b99cb3e94eda28e3008104c45e7f97d719a86d674db5c42d6d087dce7ac29de", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "de6825d29f19be85f3a101507573b11ada7c067c48c9f2250cedb7ae753b98ce" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017774" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "de6825d29f19be85f3a101507573b11ada7c067c48c9f2250cedb7ae753b98ce" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Maaslander#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 289, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017774", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017774", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017774" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017774" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017774", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas, van Maaslander, voor, 2 € 89 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017774" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017774" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017774" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas, van Maaslander", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017774" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013842-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 17 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013842" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013842", - "name": "Maaslander belegen kaas", - "decorators": [], - "display_price": 319, - "image_id": "eeaca751717606798b1f7a32983e5d85229b53e2159a1b1063aba3b0ec7a2e27", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5cebaa53de08acfe5654f5966996e6a6dd0504cdd2261160bc7ae3c79ff16ec0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013842" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5cebaa53de08acfe5654f5966996e6a6dd0504cdd2261160bc7ae3c79ff16ec0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Maaslander#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013842", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013842", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013842" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013842" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013842", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas, van Maaslander, voor, 3 € 19 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013842" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013842" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013842" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas, van Maaslander", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013842" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011642-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 18 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011642" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011642", - "name": "Maaslander jong belegen geitenkaas", - "decorators": [], - "display_price": 385, - "image_id": "2587fe4da82418b08f37e9f4a20563fd7a9d216ee176ae5939bba3087ef74cc3", - "max_count": 50, - "unit_quantity": "Plakken (140 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5d46aec866890aafe8e26056b97e87ade15c7fc0efebca71ace0b09e58f21444" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011642" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5d46aec866890aafe8e26056b97e87ade15c7fc0efebca71ace0b09e58f21444" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en smeuïg#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Maaslander#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 385, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (140 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011642", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011642", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011642" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011642" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011642", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen geitenkaas, van Maaslander, voor, 3 € 85 cent, Plakken (140 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011642" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011642" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011642" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen geitenkaas, van Maaslander", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011642" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1067234-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 18 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1067234" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1067234", - "name": "Milner belegen kaas 30+", - "decorators": [], - "display_price": 325, - "image_id": "b407b7d5ad10e0deccca44b24111c8be3150944d106c95a268c23154e151f96f", - "max_count": 99, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b9defc483bf07b112278f92dad49dd07ffbe69bd7bc0447330ed29e04c6f99bc" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067234" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b9defc483bf07b112278f92dad49dd07ffbe69bd7bc0447330ed29e04c6f99bc" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 325, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1067234", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1067234", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067234" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067234" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1067234", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Milner, voor, 3 € 25 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067234" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067234" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067234" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067234" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004825-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 19 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004825" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004825", - "name": "Milner extra belegen kaas 30+", - "decorators": [], - "display_price": 319, - "image_id": "eb470da01e2b416e5682a21228d089ed2d3edfa6953befcfbe22dd8520f847c3", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "884e510c3fd76371ee62ae5dccb6224dfeb12290f74de14ff72de4910b5f2454" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004825" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "884e510c3fd76371ee62ae5dccb6224dfeb12290f74de14ff72de4910b5f2454" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004825", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004825", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004825" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004825" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004825", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 30+, van Milner, voor, 3 € 19 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004825" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004825" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004825" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004825" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1002879-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 19 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1002879" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1002879", - "name": "Milner jong belegen kaas 30+", - "decorators": [], - "display_price": 309, - "image_id": "49790aaa3826dd1b279d32635a05ea13c2b9faa0b8f645b3eb2798a476cae0c9", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "84cfa9107fcd6e59c782aab0bc1774e2456715d97af2183ec65c5d2a44d295e0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002879" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "84cfa9107fcd6e59c782aab0bc1774e2456715d97af2183ec65c5d2a44d295e0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 309, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1002879", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1002879", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002879" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002879" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1002879", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 3 € 9 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002879" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002879" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002879" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002879" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011235-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 20 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011235" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011235", - "name": "Milner oude kaas 30+", - "decorators": [], - "display_price": 415, - "image_id": "03eb046b7aed735a076a9048e2eb8b46aa4ed52acbbc109b3475b03826b32bd9", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "39d61106abb0a274c87818f0869f912e4c86455f047120f0867d389a0449f804" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011235" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "39d61106abb0a274c87818f0869f912e4c86455f047120f0867d389a0449f804" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 415, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011235", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011235", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011235" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011235" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011235", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 30+, van Milner, voor, 4 € 15 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011235" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011235" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011235" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011235" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011751-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 20 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011751" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011751", - "name": "Milner komijnekaas 30+", - "decorators": [], - "display_price": 325, - "image_id": "bdf8b4856fa8f1690b3f5d26c81757392f259d03459b3958016a969efe154953", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8668f7e9314dbb6e673dee9e1b2a43df0d22e2feb76aa1e25a3d7af83ac3ad37" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011751" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8668f7e9314dbb6e673dee9e1b2a43df0d22e2feb76aa1e25a3d7af83ac3ad37" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Komijnekaas 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 325, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011751", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011751", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011751" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011751" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011751", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Komijnekaas 30+, van Milner, voor, 3 € 25 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011751" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011751" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011751" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Komijnekaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011751" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011839-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 21 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011839" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011839", - "name": "Milner jonge kaas 30+", - "decorators": [], - "display_price": 289, - "image_id": "54a123d9accf08b680c7df07e57e4c3808b7ea0a8b38ba11b04e0a0ed7161963", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "9672791a13e9dfd3639af65081f7eff4da538fabea4a7d1a76d148094f6fe272" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011839" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "9672791a13e9dfd3639af65081f7eff4da538fabea4a7d1a76d148094f6fe272" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 289, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011839", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011839", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011839" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011839" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011839", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 30+, van Milner, voor, 2 € 89 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011839" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011839" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011839" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011839" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017375-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 21 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017375" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017375", - "name": "Milner jong belegen kaas 30+", - "decorators": [], - "display_price": 469, - "image_id": "a422e4657a01761492d12d4acd2b35da0a9ea4e5aa26f897a32e5c5aa3749cc2", - "max_count": 50, - "unit_quantity": "Plakken (250 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "42c5f62fd130ce7c43671a605deb4e095698bb26ccaa140e6ee466fcb66b7eb7" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017375" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "42c5f62fd130ce7c43671a605deb4e095698bb26ccaa140e6ee466fcb66b7eb7" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 469, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (250 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017375", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017375", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017375" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017375" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017375", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 4 € 69 cent, Plakken (250 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017375" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017375" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017375" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017375" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1075331-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 22 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1075331" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1075331", - "name": "Milner jonge kaas 30+", - "decorators": [], - "display_price": 449, - "image_id": "47846ddecf0463dfe028832cb304d201777189f8c05f5da50005f0e2bc403d92", - "max_count": 99, - "unit_quantity": "Plakken (250 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1a6154b4e6e0e7237784990e0c123e3e283d6a9515baeb80cc8d3fda4ac4c1a3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1075331" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1a6154b4e6e0e7237784990e0c123e3e283d6a9515baeb80cc8d3fda4ac4c1a3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 449, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (250 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1075331", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1075331", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1075331" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1075331" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1075331", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 30+, van Milner, voor, 4 € 49 cent, Plakken (250 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1075331" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1075331" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1075331" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1075331" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003797-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 22 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003797" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003797", - "name": "Vergeer Gouda jong belegen kaas", - "decorators": [], - "display_price": 399, - "image_id": "20e0be8d8d1127245452dcadab18bb8ea791fd6d3ab83e5934fb27c1a3e4060d", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e7b2ad3f0e723c650ea993170d0294c022d72e76182062a1c796cb07d75f6147" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003797" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e7b2ad3f0e723c650ea993170d0294c022d72e76182062a1c796cb07d75f6147" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Natuurlijk gerijpt#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003797", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003797", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003797" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003797" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003797", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda jong belegen kaas, van Vergeer, voor, 3 € 99 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003797" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003797" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003797" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda jong belegen kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003797" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003849-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 23 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003849" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003849", - "name": "Vergeer Gouda jonge kaas", - "decorators": [], - "display_price": 369, - "image_id": "1f8ffb57144b756c8b5fbd8a3f193d87f8f8099cddcdc8bfb9a54c73d0567120", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3383cb17d41ec676260d76e9d64cc9aa34e564065899fdb645c2fba815fec13b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003849" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3383cb17d41ec676260d76e9d64cc9aa34e564065899fdb645c2fba815fec13b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Mild en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 369, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003849", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003849", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003849" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003849" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003849", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda jonge kaas, van Vergeer, voor, 3 € 69 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003849" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003849" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003849" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda jonge kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003849" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003874-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 23 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003874" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003874", - "name": "Vergeer Gouda belegen kaas", - "decorators": [], - "display_price": 429, - "image_id": "8dfe913cd1df72914c9445eae98e294413013de0686b370faa430c40c455ad9c", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e8a51565d6559166ceea6c2a2c3b91196e8e630c295a5888b13c914628c79678" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003874" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e8a51565d6559166ceea6c2a2c3b91196e8e630c295a5888b13c914628c79678" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Volvet en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 429, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003874", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003874", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003874" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003874" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003874", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda belegen kaas, van Vergeer, voor, 4 € 29 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003874" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003874" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003874" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda belegen kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003874" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003823-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 24 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003823" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003823", - "name": "Vergeer Gouda oude kaas", - "decorators": [], - "display_price": 499, - "image_id": "0300178862355a396a9fdfb622f4e291c4f424f916146d8df90cfe72893207ca", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8c4c4653e89aba5f68155ce6a886682a0321724c36b8833b705135d4104cf632" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003823" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8c4c4653e89aba5f68155ce6a886682a0321724c36b8833b705135d4104cf632" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 499, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003823", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003823", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003823" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003823" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003823", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda oude kaas, van Vergeer, voor, 4 € 99 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003823" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003823" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003823" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda oude kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003823" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017469-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 24 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017469" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017469", - "name": "De Kaaskamer jong belegen kaas 48+", - "decorators": [], - "display_price": 599, - "image_id": "54fdf9cf8ed3f7bfdfdf88dbb51c22b68bf7ad42871b63d6d9ae68f7a0c4e7af", - "max_count": 50, - "unit_quantity": "Plakken (350 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "db2e01192ea86803d77da2d28749d38b0097f58d1b5b6c18885066bb13634962" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017469" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "db2e01192ea86803d77da2d28749d38b0097f58d1b5b6c18885066bb13634962" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 599, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (350 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017469", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017469", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017469" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017469" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017469", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 99 cent, Plakken (350 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017469" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017469" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017469" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017469" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009151-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 25 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009151" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009151", - "name": "De Kaaskamer jong belegen kaas 48+", - "decorators": [], - "display_price": 419, - "image_id": "6563b604ff5a62f51be14498cff96629f4be6d32ca103ff331eb47ae077df77b", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "746ee3afc17fc08d77c9e31a73a8b63a911ff5eb2d27a357654c1b8b45db4aa0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009151" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "746ee3afc17fc08d77c9e31a73a8b63a911ff5eb2d27a357654c1b8b45db4aa0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 419, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009151", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009151", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009151" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009151" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009151", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 19 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009151" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009151" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009151" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009151" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010229-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 25 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010229" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010229", - "name": "De Kaaskamer boerenkaas jong belegen 48+", - "decorators": [], - "display_price": 435, - "image_id": "a12e22492524e02da7ea3f6d6ef70265b7f36cf2b6e702c310d9ed7ea8f7f869", - "max_count": 50, - "unit_quantity": "Plakken (225 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "4d3c57b78a1dcb05820e27b68294a8e722946541883815c4753d21aaf4d59674" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010229" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "4d3c57b78a1dcb05820e27b68294a8e722946541883815c4753d21aaf4d59674" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010229&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 435, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (225 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010229", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010229", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010229" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010229" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010229", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer, voor, 4 € 35 cent, Plakken (225 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010229&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010229" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010229" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010229" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100903-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 26 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100903" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100903", - "name": "De Kaaskamer bio jong belegen 50+", - "decorators": [], - "display_price": 435, - "image_id": "63d57d154bf9038b115d8f281dea9ee64d28565ed3856a699b7af79f9fd33296", - "max_count": 99, - "unit_quantity": "Plakken (220 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "de07d34cf6b265a58d703f1a612c7710c6217e0e287b79ced75fa6371dbbda51" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100903" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "de07d34cf6b265a58d703f1a612c7710c6217e0e287b79ced75fa6371dbbda51" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100903&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Licht pittig en volromig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 435, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (220 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100903", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100903", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100903" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100903" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100903", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen 50+, van De Kaaskamer, voor, 4 € 35 cent, Plakken (220 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100903&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100903" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100903" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100903" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014937-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 26 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014937" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014937", - "name": "De Kaaskamer jonge kaas 48+", - "decorators": [], - "display_price": 569, - "image_id": "6cdedddb5e830765b7d97a17ad8880f6bff42eb0aa91bda91b973ae73840c12b", - "max_count": 50, - "unit_quantity": "Plakken (350 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "03e0f541f9036f52d1aa04db08107c816fd1a4603a848892f31a9f3af84498ea" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014937" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "03e0f541f9036f52d1aa04db08107c816fd1a4603a848892f31a9f3af84498ea" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 569, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Plakken (350 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014937", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014937", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014937" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014937" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014937", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 69 cent, Plakken (350 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014937" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014937" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014937" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014937" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009108-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 27 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009108" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009108", - "name": "De Kaaskamer jonge kaas 48+", - "decorators": [], - "display_price": 399, - "image_id": "c636885bfc4db191b2c34a32830a7dd2a010a60b5b5ae3b164bc1a82ce58280a", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "fa1ce72865a5e32f4b4e197dc9bd7d628c34deade961f8e917af33f5c79a46d0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009108" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "fa1ce72865a5e32f4b4e197dc9bd7d628c34deade961f8e917af33f5c79a46d0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009108", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009108", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009108" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009108" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009108", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 3 € 99 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009108" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009108" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009108" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009108" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016296-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 27 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016296" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016296", - "name": "De Kaaskamer belegen kaas 48+", - "decorators": [], - "display_price": 665, - "image_id": "987ae3fa0a2f910c0059db6bbf832068ba76bdd60e08d798a3c1615b06e2ccbf", - "max_count": 50, - "unit_quantity": "Plakken (340 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5c1239e0b87194fb2cfab3e46e66a8c69d80c5bc396219e7938ec08e6826be21" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016296" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5c1239e0b87194fb2cfab3e46e66a8c69d80c5bc396219e7938ec08e6826be21" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 665, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (340 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016296", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016296", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016296" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016296" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016296", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 6 € 65 cent, Plakken (340 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016296" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016296" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016296" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016296" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009171-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 28 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009171" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009171", - "name": "De Kaaskamer belegen kaas 48+", - "decorators": [], - "display_price": 465, - "image_id": "23b62b220622045894b1907df30596f08e12a40594fe4a113dd8a860411dd5c5", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "deddca340bdcde8b793eb1b758b7ed44064ad6bd8445478be6e16fb36a7df955" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009171" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "deddca340bdcde8b793eb1b758b7ed44064ad6bd8445478be6e16fb36a7df955" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 465, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009171", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009171", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009171" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009171" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009171", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 65 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009171" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009171" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009171" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009171" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1018188-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 28 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1018188" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1018188", - "name": "De Kaaskamer boerenkaas belegen 48+", - "decorators": [], - "display_price": 449, - "image_id": "b08d3d6749cf13a2f5b60b15e3ab1b75594cacff201b0c40a2d0b0611228d495", - "max_count": 50, - "unit_quantity": "Plakken (225 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b4883fb28264483344527773c8ec2cf73cc86990734eb874cc2be43190036348" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1018188" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b4883fb28264483344527773c8ec2cf73cc86990734eb874cc2be43190036348" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1018188&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 449, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (225 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1018188", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1018188", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1018188" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1018188" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1018188", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer, voor, 4 € 49 cent, Plakken (225 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1018188&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1018188" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1018188" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1018188" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1001810-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 29 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1001810" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1001810", - "name": "De Kaaskamer gatenkaas jong belegen 45+", - "decorators": [], - "display_price": 419, - "image_id": "d78cd927ca0a69f16cc58616ab17e3e526a2eaed8ca5c7abb653d2a5bc08ab9b", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8feb5f01a256305f002bd7484e76ec7bd90409865729e411ac704f2986ebe452" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001810" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8feb5f01a256305f002bd7484e76ec7bd90409865729e411ac704f2986ebe452" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1001810&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hollandse specialiteit#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gatenkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 419, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1001810", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1001810", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001810" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001810" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1001810", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gatenkaas jong belegen 45+, van De Kaaskamer, voor, 4 € 19 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1001810&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001810" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001810" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gatenkaas jong belegen 45+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001810" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100904-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 29 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100904" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100904", - "name": "De Kaaskamer bio belegen 50+", - "decorators": [], - "display_price": 439, - "image_id": "e3e3a6fb104a8cf693dee5405b302baab73e5731d2063338a02f73e34f48c57a", - "max_count": 99, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d2fa35d8d8b7d035f059871fb2a662b54ec2dc573826c5ac267cb177043288ba" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100904" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d2fa35d8d8b7d035f059871fb2a662b54ec2dc573826c5ac267cb177043288ba" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100904&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig en licht brokkelig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 439, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100904", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100904", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100904" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100904" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100904", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen 50+, van De Kaaskamer, voor, 4 € 39 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100904&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100904" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100904" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100904" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017976-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 30 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017976" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017976", - "name": "De Kaaskamer jong belegen kaas 35+", - "decorators": [], - "display_price": 389, - "image_id": "78aec97228a1310d7bda4dfdb129151cf8c5cfc3ad16dd17b322dc4a75192735", - "max_count": 50, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f265800d9f23d40d32dfe7fb503b3cbbb2ce92bfcc8d0faee45c64b832519e81" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017976" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f265800d9f23d40d32dfe7fb503b3cbbb2ce92bfcc8d0faee45c64b832519e81" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 35+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 389, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017976", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017976", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017976" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017976" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017976", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 3 € 89 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017976" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017976" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017976" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017976" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100906-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 30 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100906" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100906", - "name": "De Kaaskamer PanPan komijn 20+", - "decorators": [], - "display_price": 439, - "image_id": "9b458c918c6fd92c11e38188d1f2a54918015897cf90916bcd6b0333111461c2", - "max_count": 99, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "0252d2705b236f3110611f101fadde8c97fc144c33d2b135f5b17703940c5ed0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100906" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "0252d2705b236f3110611f101fadde8c97fc144c33d2b135f5b17703940c5ed0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100906&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Milde komijnekaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Panpan 20+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 439, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100906", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100906", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100906" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100906" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100906", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "PanPan komijn 20+, van De Kaaskamer, voor, 4 € 39 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100906&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100906" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100906" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "PanPan komijn 20+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100906" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009215-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 31 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009215" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009215", - "name": "De Kaaskamer overjarige kaas 48+", - "decorators": [], - "display_price": 529, - "image_id": "4a48f762be73854e2aef5af8444249ab21f27613bf16df3cde6a24ca07e352f4", - "max_count": 50, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c779ac44bd29fce27a4852415cc05f2149b1b884c5ad25028b1b7976cd4ade46" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009215" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c779ac44bd29fce27a4852415cc05f2149b1b884c5ad25028b1b7976cd4ade46" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Overjarig#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 529, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009215", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009215", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009215" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009215" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009215", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 29 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009215" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009215" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009215" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009215" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009281-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 31 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009281" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009281", - "name": "De Kaaskamer oude kaas 48+", - "decorators": [], - "display_price": 505, - "image_id": "d3ca5ed62b83c3650d1e639014d3819ab8b1da19353a00560e3974142a9fda5d", - "max_count": 50, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "20b8a7492cb2698d41409ee426ae9245722a0cbe31a79753370b6e4b472c517e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009281" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "20b8a7492cb2698d41409ee426ae9245722a0cbe31a79753370b6e4b472c517e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 505, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009281", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009281", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009281" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009281" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009281", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 5 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009281" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009281" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009281" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009281" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100902-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 32 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100902" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100902", - "name": "De Kaaskamer boerenkaas oud 48+", - "decorators": [], - "display_price": 495, - "image_id": "798cca75afb154b51411194fb0a9f6d5a04442150ed2dafe9ed6dac6af34d412", - "max_count": 99, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "bdd6210e7aa6cc8b089fd9c7df4614717d4a3a6ca1532f356acfedb02383ebc8" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100902" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "bdd6210e7aa6cc8b089fd9c7df4614717d4a3a6ca1532f356acfedb02383ebc8" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100902&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 495, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100902", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100902", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100902" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100902" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100902", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas oud 48+, van De Kaaskamer, voor, 4 € 95 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100902&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100902" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100902" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas oud 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100902" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100905-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 32 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100905" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100905", - "name": "De Kaaskamer bio oud 50+", - "decorators": [], - "display_price": 459, - "image_id": "e6291ef9c6d204388b1619c72ee49fd78cec0b087278cb5b64dcb83319133db8", - "max_count": 99, - "unit_quantity": "Plakken (180 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "eeb1af033da534e91825c5995874800d4082d9967b25a874e37225cffa4e1d01" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100905" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "eeb1af033da534e91825c5995874800d4082d9967b25a874e37225cffa4e1d01" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100905&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Volromig en licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 459, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (180 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100905", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100905", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100905" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100905" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100905", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio oud 50+, van De Kaaskamer, voor, 4 € 59 cent, Plakken (180 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100905&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100905" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100905" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio oud 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100905" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1005928-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 33 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1005928" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1005928", - "name": "De Kaaskamer jonge komijnekaas 48+", - "decorators": [], - "display_price": 435, - "image_id": "f486d731b99331f4a4df0f173b43e9b23665bf2cfd048ba0bfc9d0b5ae5b30e2", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b3e71cbfd0c45462bb1f1ba5acdaa3cc9ff244e9d745dfd765a9271094c006e6" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005928" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b3e71cbfd0c45462bb1f1ba5acdaa3cc9ff244e9d745dfd765a9271094c006e6" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jonge komijn#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 435, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1005928", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1005928", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005928" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005928" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1005928", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 35 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005928" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005928" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005928" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge komijnekaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005928" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009259-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 33 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009259" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009259", - "name": "De Kaaskamer belegen komijnekaas 48+", - "decorators": [], - "display_price": 485, - "image_id": "cf9f577ce525b10b3ff9644228d101845c26f9ab3cfc9f6e81a05061fc506c24", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e52972f11735e3f1fc22788833cf2b400da52690f14def955c8a2c1f50aff112" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009259" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e52972f11735e3f1fc22788833cf2b400da52690f14def955c8a2c1f50aff112" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen komijn#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 485, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009259", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009259", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009259" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009259" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009259", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 85 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009259" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009259" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009259" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen komijnekaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009259" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004377-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 34 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004377" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004377", - "name": "De Kaaskamer oude komijnekaas 48+", - "decorators": [], - "display_price": 485, - "image_id": "df628ee64e701bf746f8c8483d1b8ecba8637733ef4aab91916237699393a2a0", - "max_count": 50, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3a0b91210fc9712d1b93ed718df98b073a9e08ee775572f607c952551c82161a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004377" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3a0b91210fc9712d1b93ed718df98b073a9e08ee775572f607c952551c82161a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud komijn#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 485, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004377", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004377", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004377" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004377" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004377", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude komijnekaas 48+, van Kaasmakerij Lutjewinkel, voor, 4 € 85 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004377" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004377" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004377" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude komijnekaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004377" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100907-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 34 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100907" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100907", - "name": "De Kaaskamer fenegriek kaas 50+", - "decorators": [], - "display_price": 449, - "image_id": "1601094f943e2fd34d1c446b263bec841eb7905a9a41f3570e72a59d387c8d07", - "max_count": 99, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "305bf4578ee07dacd75fa71df05299aa5b0030568cd69d80704f10f7814f2e02" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100907" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "305bf4578ee07dacd75fa71df05299aa5b0030568cd69d80704f10f7814f2e02" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100907&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Specialiteit#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Kruidenkaas fenegriek#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 449, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100907", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100907", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100907" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100907" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100907", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Fenegriek kaas 50+, van De Kaaskamer, voor, 4 € 49 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100907&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100907" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100907" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Fenegriek kaas 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100907" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1001822-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 35 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1001822" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1001822", - "name": "De Kaaskamer Friese nagelkaas belegen 40+", - "decorators": [], - "display_price": 485, - "image_id": "608d950971949eb8f81f880a00cda01d4a3d1754f2614108b10092f3356626ff", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "a9ad318754a4739b9cb7ae855cd052c749c5f300fd6957434f1ae63c38f5a479" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001822" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "a9ad318754a4739b9cb7ae855cd052c749c5f300fd6957434f1ae63c38f5a479" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1001822&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Oer-Fries#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen nagelkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 485, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1001822", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1001822", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001822" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001822" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1001822", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Friese nagelkaas belegen 40+, van De Kaaskamer, voor, 4 € 85 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1001822&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1001822" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001822" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Friese nagelkaas belegen 40+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1001822" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004443-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 35 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004443" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004443", - "name": "De Kaaskamer rookkaas 45+", - "decorators": [], - "display_price": 229, - "image_id": "5ea027166e4f39ed83d700bcd17d86756b9568ab97f4998f9a68aa45c84a45ee", - "max_count": 50, - "unit_quantity": "Plakken (140 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c32e40304409ec2859557fcf7201ab9b2d100eca5c323208f9db53b524581640" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004443" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c32e40304409ec2859557fcf7201ab9b2d100eca5c323208f9db53b524581640" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004443&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Oer-Hollands#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Rookkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 229, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (140 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004443", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004443", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004443" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004443" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004443", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Rookkaas 45+, van De Kaaskamer, voor, 2 € 29 cent, Plakken (140 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004443&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004443" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004443" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Rookkaas 45+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004443" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009130-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 36 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009130" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009130", - "name": "De Kaaskamer extra belegen kaas 48+", - "decorators": [], - "display_price": 505, - "image_id": "db6a4b521231de8c6e4ba903e35a2d22073fdd2cb12bc31c7a8bdc8d09208191", - "max_count": 50, - "unit_quantity": "Plakken (230 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "01bf359b3a2ffd2e7a8d869e05211a455045dbdf697d8d98984022154606633c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009130" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "01bf359b3a2ffd2e7a8d869e05211a455045dbdf697d8d98984022154606633c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 505, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (230 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009130", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009130", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009130" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009130" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009130", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 5 € 5 cent, Plakken (230 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009130" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009130" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009130" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009130" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004399-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 36 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004399" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004399", - "name": "De Kaaskamer geitenkaas belegen 50+", - "decorators": [], - "display_price": 515, - "image_id": "8e18f8daae7a2ed223f24cb2d2cac28c8d5f18f016a528fb3bbe730a0ea552aa", - "max_count": 50, - "unit_quantity": "Plakken (210 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ae77965f0a24b823c133c2d0033e1e604d0ebe976e89e61c7f743838ebe94538" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004399" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ae77965f0a24b823c133c2d0033e1e604d0ebe976e89e61c7f743838ebe94538" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 515, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (210 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004399", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004399", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004399" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004399" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004399", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer, voor, 5 € 15 cent, Plakken (210 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004399" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004399" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004399" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004399" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009366-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 37 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009366" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009366", - "name": "De Kaaskamer geitenkaas jong belegen 50+", - "decorators": [], - "display_price": 515, - "image_id": "7df06e1b56dd3a65b9b466848a38d779e4f9b21e6e7b64952804700458b12c8c", - "max_count": 50, - "unit_quantity": "Plakken (220 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "cac6d8478141f1ddcec46e352d987e101fa8080c3dd9243d6d5102433fdc3b86" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009366" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "cac6d8478141f1ddcec46e352d987e101fa8080c3dd9243d6d5102433fdc3b86" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Milde smaak#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 515, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (220 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009366", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009366", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009366" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009366" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009366", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer, voor, 5 € 15 cent, Plakken (220 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009366" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009366" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009366" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009366" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004421-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 37 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004421" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004421", - "name": "De Kaaskamer geitenkaas oud 50+", - "decorators": [], - "display_price": 549, - "image_id": "2d56898079dc4bf7013cb90d70a6aaa703f9939d008b4fce20b013b9f6a91994", - "max_count": 50, - "unit_quantity": "Plakken (190 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3a30ea818e446d0e07b3b581808b7634d45733b621ad9e372782c41b13bce833" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004421" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3a30ea818e446d0e07b3b581808b7634d45733b621ad9e372782c41b13bce833" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Extra pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oude geitenkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 549, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (190 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004421", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004421", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004421" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004421" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004421", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer, voor, 5 € 49 cent, Plakken (190 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004421" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004421" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004421" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004421" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009470-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 38 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009470" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009470", - "name": "Leerdammer original gatenkaas", - "decorators": [], - "display_price": 265, - "image_id": "46e9bbffcc47708aecc49dd4e0d3f7022b641e4dee9921d5f101bbaf1136913e", - "max_count": 50, - "unit_quantity": "Plakken (160 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "86900f75d8eb029d7322ea9dbb69107dc25cb91507472389073b8e3f8429498c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009470" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "86900f75d8eb029d7322ea9dbb69107dc25cb91507472389073b8e3f8429498c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Original gatenkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Leerdammer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 265, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (160 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009470", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009470", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009470" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009470" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009470", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original gatenkaas, van Leerdammer, voor, 2 € 65 cent, Plakken (160 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009470" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009470" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009470" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original gatenkaas, van Leerdammer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009470" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012736-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 38 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012736" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012736", - "name": "Old Amsterdam oude kaas", - "decorators": [], - "display_price": 499, - "image_id": "756d28bc99fe6d6d30e6ca66e535fa93dbca7aaf3ebe20906ff4af2b2aebb9aa", - "max_count": 50, - "unit_quantity": "Plakken (225 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1becfe3d79f714cbe78d8ef2c06061b0e56eefa8ded2e5a4f634f4ef3d0bae00" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012736" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1becfe3d79f714cbe78d8ef2c06061b0e56eefa8ded2e5a4f634f4ef3d0bae00" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vertrouwd pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oude kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Old Amsterdam#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 499, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (225 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012736", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012736", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012736" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012736" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012736", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas, van Old Amsterdam, voor, 4 € 99 cent, Plakken (225 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012736" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012736" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012736" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas, van Old Amsterdam", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012736" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1045079-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 39 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1045079" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1045079", - "name": "MinusL gouda kaas", - "decorators": [], - "display_price": 315, - "image_id": "00dbc2b0ae2b4165960a2c003b4db5250b75d9865a5fdc2a85b6d1cf6d872053", - "max_count": 50, - "unit_quantity": "Plakken (150 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7d7337d915f813db98dda1c81a720dcef9f7e55a1adeedd99fd336f43ac54cf9" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045079" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7d7337d915f813db98dda1c81a720dcef9f7e55a1adeedd99fd336f43ac54cf9" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "lactofree", - "width": 16, - "fallback": { - "id": "picnic-page/b20d144b20838b0b348dbccc38a5bc7364791da3b4f58452e4c294465e37fc2a" - }, - "color": null, - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Lactosevrij#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)MinusL#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 315, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (150 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1045079", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1045079", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045079" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045079" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1045079", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda kaas, van MinusL, voor, 3 € 15 cent, Plakken (150 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045079" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045079" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045079" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Gouda kaas, van MinusL", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045079" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013461-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 39 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013461" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013461", - "name": "Wahid halal jonge kaas 48+", - "decorators": [], - "display_price": 299, - "image_id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0", - "max_count": 50, - "unit_quantity": "Plakken (200 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013461" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d10835876efeed22c4a70174708c7efd805004121c50855d2d6412c73b15b3c0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Halal#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Wahid#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 299, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (200 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013461", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013461", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013461" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013461" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013461", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Halal jonge kaas 48+, van Wahid, voor, 2 € 99 cent, Plakken (200 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013461" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013461" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013461" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Halal jonge kaas 48+, van Wahid", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013461" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008513-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 40 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008513" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008513", - "name": "De Rotterdamsche Oude oude 48+", - "decorators": [], - "display_price": 389, - "image_id": "c8c5707d0ab8ece59323640ed871e0aa6e1050f18f1324dd3bab988ed64b4186", - "max_count": 50, - "unit_quantity": "Plakken (ca. 160 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d843d6f5e45adc817680b1ca9a150121dd022b50fd9e30860f85e57fc470949f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008513" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d843d6f5e45adc817680b1ca9a150121dd022b50fd9e30860f85e57fc470949f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008513&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gerijpt op houten planken#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oude#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Rotterdamsche Oude#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 389, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Plakken (ca. 160 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008513", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008513", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008513" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008513" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008513", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude 48+, van De Rotterdamsche Oude, voor, 3 € 89 cent, Plakken (ca. 160 g)", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008513&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008513" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008513" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude 48+, van De Rotterdamsche Oude", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008513" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013370-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 40 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013370" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013370", - "name": "Picnic jong belegen kaas 48+", - "decorators": [], - "display_price": 859, - "image_id": "a79456da1d2b9205f0df90ef02c21464ea70d9c24973a6d3ae9a72c4ce1a7cc9", - "max_count": 50, - "unit_quantity": "Stuk (750 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f8a64d40706e8ba0cf1a00e246902046e875114b345f2f0372a8b3447c69fe94" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013370" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/11d6fc16177890e87184b491f21c715962bbcbf2a71e70f001f4256d3be53c2d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f8a64d40706e8ba0cf1a00e246902046e875114b345f2f0372a8b3447c69fe94" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 859, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Stuk (750 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013370", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013370", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013370" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013370" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013370", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen, voor, 8 € 59 cent, Stuk (750 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013370" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013370" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013370" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013370" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014816-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 41 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014816" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014816", - "name": "Picnic jong belegen kaas 48+", - "decorators": [], - "display_price": 589, - "image_id": "92e2094d22ca5ceb2998fe886833222536cede8e2c74150c34d4034fe7ac19b1", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "760ecab27389e98868ba2454aeac55863d23d92c207fe8881e8dd1e7db5def2b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014816" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/673f97f1d6f437b40170a721d3cf3dc773bd1f1407ef17b543dcbf52b9d84639" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "760ecab27389e98868ba2454aeac55863d23d92c207fe8881e8dd1e7db5def2b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 589, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014816", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014816", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014816" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014816" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014816", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic, voor, 5 € 89 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014816" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014816" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014816" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014816" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013428-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 41 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013428" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013428", - "name": "Picnic belegen kaas 48+", - "decorators": [], - "display_price": 939, - "image_id": "d720f1705aa9eef5abbf8a5ba8a5ec3ed6b906c62a199fe72271820a15cbfd47", - "max_count": 50, - "unit_quantity": "750 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b399cfdec2519d630a9ab2bcf3cadde44eb831a0b5bb90c0d4753ea9e9e12b59" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013428" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/75c282001422b1682ae4e62b5ce51974fa6e760d86a69ff62f8f9361c353f460" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b399cfdec2519d630a9ab2bcf3cadde44eb831a0b5bb90c0d4753ea9e9e12b59" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 939, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)750 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013428", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013428", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013428" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013428" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013428", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Prijskampioen, voor, 9 € 39 cent, 750 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013428" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013428" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013428" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013428" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010759-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 42 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010759" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010759", - "name": "Picnic Bio belegen kaas 48+", - "decorators": [], - "display_price": 787, - "image_id": "ad88c9eeaaa9182493f47b17f589ba89c0089911bb6d3f2175cfd05ebd939351", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c8dab06c01107be5496de86b1a8ce027fce8216d1a0d2b825e05112a4f546f0b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010759" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/0e9f47401a3ab01d382cc8f996702a371e0d8f134b3f28ccc32319d8fa545ec5" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c8dab06c01107be5496de86b1a8ce027fce8216d1a0d2b825e05112a4f546f0b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Volromig en hartig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 787, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 875, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010759", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010759", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010759" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010759" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010759", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen kaas 48+, van Picnic, van, 8 € 75 cent, voor, 7 € 87 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010759" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010759" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010759" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010759" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013342-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 42 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013342" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013342", - "name": "Picnic jonge kaas 48+", - "decorators": [], - "display_price": 829, - "image_id": "ef3adeeda7e3624166bf5b99c2138da740e02392038e00174fc859dc80da252a", - "max_count": 50, - "unit_quantity": "Stuk (750 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "a506fc80aba5b0f9768446ed486b330384f5b52c40b5474aea7e3d25d7df4228" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013342" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/c1bc7b5906c79b66d3189734d675f169e078dcec591a21a18c7d443bbd7a70fc" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "a506fc80aba5b0f9768446ed486b330384f5b52c40b5474aea7e3d25d7df4228" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 829, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)Stuk (750 g)#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013342", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013342", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013342" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013342" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013342", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen, voor, 8 € 29 cent, Stuk (750 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013342" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013342" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013342" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013342" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014773-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 43 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014773" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014773", - "name": "Picnic jonge kaas 48+", - "decorators": [], - "display_price": 565, - "image_id": "34cfd381621167cb5f696196f5c0abb207d8fbbcd93363d3cde580a2880e660f", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "173faf44686849214184cae768ef2d565296cc8a70147a627c056fbf8d086352" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014773" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/604991d7b855f4a47284ae1d339566bcd3efe0b87198090b44984aaebea919c8" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "173faf44686849214184cae768ef2d565296cc8a70147a627c056fbf8d086352" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 565, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014773", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014773", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014773" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014773" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014773", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen, voor, 5 € 65 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014773" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014773" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014773" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014773" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010740-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 43 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010740" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010740", - "name": "Picnic Bio jonge kaas 48+", - "decorators": [], - "display_price": 715, - "image_id": "28ca025e2c17f56ac143c59fb9dee639724d939a40049e9abb2bb6d5a068aa5e", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "4aa85978b1bb9dacbe4317dfb0f4dcf3c69cd4e2556dbca46c60ba3f3499d13e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010740" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/72328623a1ab682d5c7a01db80ccb831a741dfc2afc727ab8be3cc5b696de40e" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "4aa85978b1bb9dacbe4317dfb0f4dcf3c69cd4e2556dbca46c60ba3f3499d13e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 715, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 795, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010740", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010740", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010740" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010740" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010740", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jonge kaas 48+, van Picnic, van, 7 € 95 cent, voor, 7 € 15 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010740" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010740" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010740" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jonge kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010740" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010656-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 44 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010656" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010656", - "name": "Picnic jong belegen kaas 30+", - "decorators": [], - "display_price": 589, - "image_id": "09edd760bf992eb5dfa3e462fd120f05f10ee308f25420359f74ad8e1ae1e694", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e29f9d21e5df14eb48a7fe797bfd14e5ae830916cc9176062d1d33e587b0af6f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010656" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/5afc485c26209aef47ed5e944b31ade54c948e892a468513df1c754dd3a17cd7" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e29f9d21e5df14eb48a7fe797bfd14e5ae830916cc9176062d1d33e587b0af6f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 589, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010656", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010656", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010656" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010656" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010656", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Picnic, voor, 5 € 89 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010656" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010656" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010656" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010656" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010676-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 44 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010676" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010676", - "name": "Picnic belegen kaas 30+", - "decorators": [], - "display_price": 639, - "image_id": "4a812bef0ce2325856e51cfa5a39c80d07f7029270ab75a829441859b996c294", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "029565ebce865a7f38d9fe48814d9d942b0fda6a16c7ca4e86e8f0da46799a27" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010676" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/6e58bbdb13e8d0d2b4dfd39372ccb5bdfabafd22cd2731edc88fbb6e968290bd" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "029565ebce865a7f38d9fe48814d9d942b0fda6a16c7ca4e86e8f0da46799a27" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 639, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010676", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010676", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010676" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010676" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010676", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Picnic, voor, 6 € 39 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010676" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010676" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010676" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010676" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014890-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 45 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014890" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014890", - "name": "Picnic extra belegen kaas 48+", - "decorators": [], - "display_price": 709, - "image_id": "c0cb9b874a3117d64bea4708349abc56979eb1f9cf178c23be7392e83522cf94", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5a0831bf27c32104f4583e44729fa5c7e3122a9eef3c8465980aacf1585ed34a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014890" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/b84b8a60b6d93a8c0ddbf71a57859fe5e793e594c8625d12e99dcef2c02d34ef" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5a0831bf27c32104f4583e44729fa5c7e3122a9eef3c8465980aacf1585ed34a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 709, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014890", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014890", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014890" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014890" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014890", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Picnic, voor, 7 € 9 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014890" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014890" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014890" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014890" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010636-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 45 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010636" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010636", - "name": "Picnic oude kaas 48+", - "decorators": [], - "display_price": 785, - "image_id": "7ae240bf1745e8541bd55a5652d8f45397d2b8e80c197cfa348ada276f213ba1", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b7dbc8233e18f7d389ca04b620096d8bcdc7c07b14097d28c7a8763e8562aa10" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010636" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/59b9b1804cac936c8dfa646e64ed72671873469fd65e7e8317e65a149b1715fc" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b7dbc8233e18f7d389ca04b620096d8bcdc7c07b14097d28c7a8763e8562aa10" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 785, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010636", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010636", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010636" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010636" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010636", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Picnic, voor, 7 € 85 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010636" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010636" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010636" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010636" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014796-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 46 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014796" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014796", - "name": "Picnic jong belegen komijnekaas 48+", - "decorators": [], - "display_price": 689, - "image_id": "5a7643175e7684850342344258308926ec95b310bf4570c8903099fa685ae04b", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3adffb5644a2c907bc77aaed11b76b908e027c78a835d9a528a7d2668ce9e45e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014796" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/25cea418f4efabdcd2001240d7aad6f000fb415f02b22928724256f39b0bc7c2" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3adffb5644a2c907bc77aaed11b76b908e027c78a835d9a528a7d2668ce9e45e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen komijn#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 689, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014796", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014796", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014796" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014796" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014796", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic, voor, 6 € 89 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014796" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014796" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014796" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen komijnekaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014796" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009345-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 46 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009345" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009345", - "name": "De Kaaskamer boerenkaas jong belegen 48+", - "decorators": [], - "display_price": 789, - "image_id": "0c24ae4ca4097b16b5eaa1855372e4cf1262258db86b5e5770a4e9ec1d20bf23", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "52659df065a6eac5667cbd5dde2eb6d63f7faa425df005aefc4ce8fcc6d26d23" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009345" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "52659df065a6eac5667cbd5dde2eb6d63f7faa425df005aefc4ce8fcc6d26d23" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 789, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009345", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009345", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009345" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009345" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009345", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer, voor, 7 € 89 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009345" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009345" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009345" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong belegen 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009345" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009019-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 47 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009019" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009019", - "name": "De Kaaskamer jong belegen kaas 48+", - "decorators": [], - "display_price": 755, - "image_id": "d965041642a002f2bb4fa45ac883a0e37dc9a8dc72998a414fd2f77a903323a5", - "max_count": 50, - "unit_quantity": "Stuk (460 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "33fa8438fdebf63e31b1add0bb66cdbe68792577df6888739bc8e3fab32bef9e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009019" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "33fa8438fdebf63e31b1add0bb66cdbe68792577df6888739bc8e3fab32bef9e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 755, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (460 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009019", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009019", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009019" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009019" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009019", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 55 cent, Stuk (460 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009019" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009019" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009019" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009019" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1090206-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 47 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1090206" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1090206", - "name": "De Kaaskamer bio jong belegen kaas 50+", - "decorators": [], - "display_price": 735, - "image_id": "fce95a6924e8cfc94ed44d71c47ac694207ae4dd71261280e13a9225bdfd69bb", - "max_count": 99, - "unit_quantity": "Stuk (410 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c55cc6ece08a1f5fff8bef34087da1652a6b29e09e5cd5c81d66663d7af6a157" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090206" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c55cc6ece08a1f5fff8bef34087da1652a6b29e09e5cd5c81d66663d7af6a157" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 735, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (410 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1090206", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1090206", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090206" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090206" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1090206", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen kaas 50+, van De Kaaskamer, voor, 7 € 35 cent, Stuk (410 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090206" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090206" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090206" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio jong belegen kaas 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090206" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1140096-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 48 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1140096" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1140096", - "name": "De Kaaskamer Vakantiekaas jong belegen", - "decorators": [], - "display_price": 699, - "image_id": "8c5a7688ab09db6f0de74714ae3791a95e2eb2e266cf38155f6c165a3bf00145", - "max_count": 99, - "unit_quantity": "Stuk (500 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "886d2c3019505501be144c92964fb1770b864bd1e2071408253185593db5c554" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1140096" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "886d2c3019505501be144c92964fb1770b864bd1e2071408253185593db5c554" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1972#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Vakantiekaas jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 699, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (500 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1140096", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1140096", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1140096" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1140096" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1140096", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Vakantiekaas jong belegen, van De Kaaskamer, voor, 6 € 99 cent, Stuk (500 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1140096" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1140096" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1140096" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Vakantiekaas jong belegen, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1140096" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008973-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 48 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008973" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008973", - "name": "De Kaaskamer belegen kaas 48+", - "decorators": [], - "display_price": 789, - "image_id": "2b729a0f9c1beced3cab26c3d2aaec1477a15a64851d82dfb47e199ecca330e2", - "max_count": 50, - "unit_quantity": "Stuk (440 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7c425f12b08a2190aeaf663f423a67d9dedfe63636a36cf16e26c0bb60e3d4dd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008973" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7c425f12b08a2190aeaf663f423a67d9dedfe63636a36cf16e26c0bb60e3d4dd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 789, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (440 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008973", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008973", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008973" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008973" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008973", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 89 cent, Stuk (440 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008973" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008973" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008973" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008973" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010386-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 49 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010386" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010386", - "name": "De Kaaskamer boerenkaas belegen 48+", - "decorators": [], - "display_price": 819, - "image_id": "f8e578dc53b37f86c597169111a5e90426de6efe9bb0beb8ca8b34351d8ba554", - "max_count": 50, - "unit_quantity": "Stuk (430 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "eed7d6172de57e01e23b790544d311485ef1da4fe62b7c4b83d98b99cf0c7577" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010386" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "eed7d6172de57e01e23b790544d311485ef1da4fe62b7c4b83d98b99cf0c7577" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 819, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (430 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010386", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010386", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010386" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010386" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010386", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer, voor, 8 € 19 cent, Stuk (430 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010386" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010386" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010386" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas belegen 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010386" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1090207-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 49 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1090207" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1090207", - "name": "De Kaaskamer bio belegen kaas 50+", - "decorators": [], - "display_price": 745, - "image_id": "a9156b30aea95bf399950e9c545783abad152b529b098055acd09aaf5057b13e", - "max_count": 99, - "unit_quantity": "Stuk (390 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "fce51d40e010e03d9d283fd0134745ade35653c8731d82cfd2d50ee8b4f75e56" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090207" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "fce51d40e010e03d9d283fd0134745ade35653c8731d82cfd2d50ee8b4f75e56" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en hartig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio belegen kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 745, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (390 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1090207", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1090207", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090207" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090207" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1090207", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen kaas 50+, van De Kaaskamer, voor, 7 € 45 cent, Stuk (390 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1090207" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090207" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1090207" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio belegen kaas 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1090207" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009042-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 50 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009042" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009042", - "name": "De Kaaskamer jonge kaas 48+", - "decorators": [], - "display_price": 755, - "image_id": "16be9c10a37f65aa0404d8317baedc67490cfca9d7a99d96f308a12f2f43e72c", - "max_count": 50, - "unit_quantity": "Stuk (480 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7b8ef48541315cc5165aefc1d5e792082bd60774e010677886753e47ce540018" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009042" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7b8ef48541315cc5165aefc1d5e792082bd60774e010677886753e47ce540018" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 755, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (480 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009042", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009042", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009042" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009042" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009042", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 55 cent, Stuk (480 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009042" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009042" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009042" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009042" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080484-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 50 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080484" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080484", - "name": "De Kaaskamer boerenkaas jong 48+", - "decorators": [], - "display_price": 749, - "image_id": "5c639fca61cef9bcb021a15516bcbd7f4ff9982054b74e7754d73cc73549e633", - "max_count": 99, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5459e8a3f8746274816b34c4e685a527209f090470a3949b440105c88154d950" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080484" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5459e8a3f8746274816b34c4e685a527209f090470a3949b440105c88154d950" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 749, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080484", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080484", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080484" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080484" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080484", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong 48+, van De Kaaskamer, voor, 7 € 49 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080484" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080484" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080484" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas jong 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080484" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003063-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 51 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003063" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003063", - "name": "De Kaaskamer belegen kaas 35+", - "decorators": [], - "display_price": 639, - "image_id": "eae0347fcaaec65a02b6cc801e12985d12b8597de6a37215000e2bf06fe2c111", - "max_count": 50, - "unit_quantity": "Stuk (360 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ebd3883b64f27713a31e4b54d7761aebd2c38f2791cefdbbc1858d532676cf24" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003063" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ebd3883b64f27713a31e4b54d7761aebd2c38f2791cefdbbc1858d532676cf24" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen 35+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 639, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (360 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003063", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003063", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003063" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003063" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003063", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 39 cent, Stuk (360 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003063" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003063" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003063" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 35+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003063" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1015953-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 51 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1015953" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1015953", - "name": "De Kaaskamer jong belegen kaas 35+", - "decorators": [], - "display_price": 619, - "image_id": "d3ca4c5544de102da48aa8a5899fdf2dbc52e57a8d565a0310f987cc62e8a147", - "max_count": 50, - "unit_quantity": "Stuk (380 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "865d0dade60964bdfa49c1ad76eeee16d3986918c605cbd034650f66452d04af" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015953" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "865d0dade60964bdfa49c1ad76eeee16d3986918c605cbd034650f66452d04af" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 35+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 619, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (380 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1015953", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1015953", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015953" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015953" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1015953", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 19 cent, Stuk (380 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015953" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015953" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015953" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 35+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015953" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080483-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 52 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080483" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080483", - "name": "De Kaaskamer extra belegen kaas 35+", - "decorators": [], - "display_price": 669, - "image_id": "8eeaa832c5018db10d84a2b42b081c0503b45673b8f8f6157740c71426d9a927", - "max_count": 99, - "unit_quantity": "Stuk (340 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3df42673174c3e2acbe502bf83c1263e138652f6e32bbfe618fde6ea09935f54" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080483" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3df42673174c3e2acbe502bf83c1263e138652f6e32bbfe618fde6ea09935f54" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen 35+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 669, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (340 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080483", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080483", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080483" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080483" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080483", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 35+, van Kaasmakerij Lutjewinkel, voor, 6 € 69 cent, Stuk (340 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080483" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080483" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080483" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 35+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080483" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009066-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 52 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009066" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009066", - "name": "De Kaaskamer extra belegen kaas 48+", - "decorators": [], - "display_price": 795, - "image_id": "3c01968f8dd92b981719a7d2e6043a9a86a91fb573595e48ddae46666a9f53e8", - "max_count": 50, - "unit_quantity": "Stuk (420 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "0d3dda428c17e8aec114d2b05dade9f84f98b8dd2281de7d156d499954d30bd1" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009066" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "0d3dda428c17e8aec114d2b05dade9f84f98b8dd2281de7d156d499954d30bd1" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 795, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (420 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009066", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009066", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009066" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009066" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009066", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 95 cent, Stuk (420 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009066" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009066" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009066" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Extra belegen kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009066" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080485-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 53 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080485" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080485", - "name": "De Kaaskamer boerenkaas extra belegen 48+", - "decorators": [], - "display_price": 849, - "image_id": "177240194f0793acb910dd599a91fe4294d5ec42f5402095d004a65dcd9fba48", - "max_count": 99, - "unit_quantity": "Stuk (410 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "2e172d6b591a3be143a98b672c9406c11d5c1a8158131641ee97c993694fb48b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080485" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "2e172d6b591a3be143a98b672c9406c11d5c1a8158131641ee97c993694fb48b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "windmill", - "width": 12, - "fallback": { - "id": "picnic-page/65be7ef86e0ddbb6a7b2197b0438b720a1d0834ccd6f33311b73c3edef13efd9" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Boerenkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Extra belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 849, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (410 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080485", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080485", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080485" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080485" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080485", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas extra belegen 48+, van De Kaaskamer, voor, 8 € 49 cent, Stuk (410 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080485" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080485" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080485" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Boerenkaas extra belegen 48+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080485" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1005883-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 53 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1005883" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1005883", - "name": "De Kaaskamer overjarige kaas 48+", - "decorators": [], - "display_price": 925, - "image_id": "c859ffd82a2708fe87990652a395993c3e40be25c077f65b340925b0c55dbbd2", - "max_count": 50, - "unit_quantity": "Stuk (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "6f0b0412777c569eaf09f74fd8c3bc3d719d8c9b1b5e49677a8a23d6c5babfdd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005883" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "6f0b0412777c569eaf09f74fd8c3bc3d719d8c9b1b5e49677a8a23d6c5babfdd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Overjarig#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 925, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (400 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1005883", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1005883", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005883" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005883" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1005883", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel, voor, 9 € 25 cent, Stuk (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005883" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005883" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005883" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Overjarige kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005883" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008996-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 54 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008996" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008996", - "name": "De Kaaskamer oude kaas 48+", - "decorators": [], - "display_price": 949, - "image_id": "3221aaa76ab00d3000551896a6c08463ea60914c2a3d81c470734cbab86a1959", - "max_count": 50, - "unit_quantity": "Stuk (410 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e0525efb0a77bf1e2ff35fdec8c28439582eb819c53475f823cb942b98d85952" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008996" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e0525efb0a77bf1e2ff35fdec8c28439582eb819c53475f823cb942b98d85952" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 949, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (410 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008996", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008996", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008996" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008996" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008996", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel, voor, 9 € 49 cent, Stuk (410 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008996" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008996" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008996" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008996" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009088-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 54 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009088" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009088", - "name": "De Kaaskamer komijn jong belegen 48+", - "decorators": [], - "display_price": 775, - "image_id": "cae535ed781bea6c3716a485014a1dc32ba4dd1b78b775da6e79ecd7320a9e77", - "max_count": 50, - "unit_quantity": "Stuk (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e56bda42465c0dfcbf629dba8e022a16b8a3f3e24d47628ccd27913e34350dfe" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009088" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e56bda42465c0dfcbf629dba8e022a16b8a3f3e24d47628ccd27913e34350dfe" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kaasspecialist sinds 1916#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Komijn jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kaasmakerij Lutjewinkel#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 775, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (400 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009088", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009088", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009088" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009088" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009088", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Komijn jong belegen 48+, van Kaasmakerij Lutjewinkel, voor, 7 € 75 cent, Stuk (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009088" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009088" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009088" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Komijn jong belegen 48+, van Kaasmakerij Lutjewinkel", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009088" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009322-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 55 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009322" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009322", - "name": "De Kaaskamer geitenkaas jong belegen 50+", - "decorators": [], - "display_price": 719, - "image_id": "0d956e1ee7c6d34b4bd78d749bb8dbd2eb70f1bd47e84b89c83c7eec1334fcd2", - "max_count": 50, - "unit_quantity": "Stuk (350 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5cdbd5a693905897f25021cc0ee484113ed987b78081a3d8bde54ae3e7032376" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009322" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5cdbd5a693905897f25021cc0ee484113ed987b78081a3d8bde54ae3e7032376" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Mild en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 719, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (350 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009322", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009322", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009322" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009322" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009322", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer, voor, 7 € 19 cent, Stuk (350 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009322" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009322" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009322" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas jong belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009322" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009409-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 55 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009409" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009409", - "name": "De Kaaskamer geitenkaas oud 50+", - "decorators": [], - "display_price": 759, - "image_id": "b4401884177fdecdeceeae6fd59e75c8bc38fb93180cf49def94b4ac49fbe8b0", - "max_count": 50, - "unit_quantity": "Stuk (310 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ed64b01ab7713ec008bf1934146438cef898312a2be05651a74f029990822fba" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009409" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ed64b01ab7713ec008bf1934146438cef898312a2be05651a74f029990822fba" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 759, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (310 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009409", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009409", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009409" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009409" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009409", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer, voor, 7 € 59 cent, Stuk (310 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009409" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009409" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009409" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas oud 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009409" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080486-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 56 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080486" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080486", - "name": "De Kaaskamer geitenkaas belegen 50+", - "decorators": [], - "display_price": 695, - "image_id": "5f98def6eeed97064d16c27f4d0b82895e4633fdf9128b1a94b7ab5312795738", - "max_count": 99, - "unit_quantity": "Stuk (330 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3d9563394d9a9a8a779b2854f52dfcf4bf9cacf47ce4d4c7d3305e81a9bbc4af" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080486" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3d9563394d9a9a8a779b2854f52dfcf4bf9cacf47ce4d4c7d3305e81a9bbc4af" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Licht pittig en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geitenkaas belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Kaaskamer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 695, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (330 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080486", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080486", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080486" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080486" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080486", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer, voor, 6 € 95 cent, Stuk (330 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080486" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080486" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080486" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geitenkaas belegen 50+, van De Kaaskamer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080486" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012113-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 56 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012113" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012113", - "name": "Vergeer jong belegen 48+ kaas", - "decorators": [], - "display_price": 849, - "image_id": "1e7ffba58f3240a2eaacb6d672f8e5dbae541a8698de5d1172f0a9eb540bb281", - "max_count": 50, - "unit_quantity": "Stuk (600 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "eb40858dab6e8e532720bb2c0591973ca48bad665c862bf7f7665851bde08597" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012113" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "eb40858dab6e8e532720bb2c0591973ca48bad665c862bf7f7665851bde08597" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig en mild#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 849, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (600 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012113", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012113", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012113" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012113" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012113", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen 48+ kaas, van Vergeer, voor, 8 € 49 cent, Stuk (600 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012113" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012113" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012113" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen 48+ kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012113" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012130-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 57 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012130" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012130", - "name": "Vergeer belegen 48+ kaas", - "decorators": [], - "display_price": 849, - "image_id": "2d8afd83eec34844e7f3a887ee9f7376900217ce9934686ac57c756398acef3e", - "max_count": 50, - "unit_quantity": "Stuk (550 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "470872eb4f06a72809372dcc7a4a8c13861cb15c2e7a3642e2ad267d0e1b253d" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012130" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "470872eb4f06a72809372dcc7a4a8c13861cb15c2e7a3642e2ad267d0e1b253d" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Vol en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 849, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (550 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012130", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012130", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012130" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012130" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012130", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen 48+ kaas, van Vergeer, voor, 8 € 49 cent, Stuk (550 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012130" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012130" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012130" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen 48+ kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012130" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012094-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 57 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012094" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012094", - "name": "Vergeer jonge kaas 48+", - "decorators": [], - "display_price": 899, - "image_id": "450dffc07bafceae949a0129f277aefd06db49a088b1d35a0fcd87f45afb61fc", - "max_count": 50, - "unit_quantity": "Stuk (650 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8e5a6753732df03b245246ff0e96f67f42dbc376f7f9cf673512ecc408a4da17" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012094" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8e5a6753732df03b245246ff0e96f67f42dbc376f7f9cf673512ecc408a4da17" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Mild en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Gouda jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 899, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (650 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012094", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012094", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012094" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012094" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012094", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Vergeer, voor, 8 € 99 cent, Stuk (650 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012094" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012094" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012094" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jonge kaas 48+, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012094" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1005488-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 58 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1005488" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1005488", - "name": "Milner jong belegen kaas 30+", - "decorators": [], - "display_price": 779, - "image_id": "dffae661328ea72c7c7fc124aec3da8ba52e551d595145cc44d3bda9b56ab0c4", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d16f67c0ac84a23043bca7742861c28e441098c3b6fac9beb780609e0b0c0157" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005488" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d16f67c0ac84a23043bca7742861c28e441098c3b6fac9beb780609e0b0c0157" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 779, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1005488", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1005488", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005488" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005488" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1005488", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner, voor, 7 € 79 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005488" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005488" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005488" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jong belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005488" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1005465-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 58 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1005465" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1005465", - "name": "Milner belegen kaas 30+", - "decorators": [], - "display_price": 799, - "image_id": "5f2b84253ce44893c58bcd2d9590aec0a4f5ad00e100510660c0e9630fb65825", - "max_count": 50, - "unit_quantity": "Stuk (450 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b638c1377755396ea7cd05dd613bdd3a065dd62e2b95bf6927543828c97ebcc3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005465" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b638c1377755396ea7cd05dd613bdd3a065dd62e2b95bf6927543828c97ebcc3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Milner#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 799, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (450 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1005465", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1005465", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005465" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005465" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1005465", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Milner, voor, 7 € 99 cent, Stuk (450 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005465" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005465" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005465" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Belegen kaas 30+, van Milner", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005465" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012522-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 59 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012522" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012522", - "name": "Old Amsterdam oude kaas", - "decorators": [], - "display_price": 809, - "image_id": "b49d809480155fafeaa4d1180f5fa83514377b40716da7f898d4df99f7da8be2", - "max_count": 50, - "unit_quantity": "Stuk (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "10f6f5ba30980cf917c3e5e5518d7c4a02e23cdbf42c7654c1ba8e2dad323233" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012522" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "10f6f5ba30980cf917c3e5e5518d7c4a02e23cdbf42c7654c1ba8e2dad323233" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Oude kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Old Amsterdam#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 809, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Stuk (400 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012522", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012522", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012522" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012522" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012522", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas, van Old Amsterdam, voor, 8 € 9 cent, Stuk (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012522" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012522" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012522" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Oude kaas, van Old Amsterdam", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012522" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008442-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 59 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008442" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008442", - "name": "Landana Jersey belegen", - "decorators": [], - "display_price": 647, - "image_id": "898e244377440de729199cd35fcc8ff006cccb73a3c0f82fa4860a29401effb4", - "max_count": 50, - "unit_quantity": "400 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ece87c1573d349047dceeb60ecf783a049a1dd4de7a51d0c9bcb0d55ab200001" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008442" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ece87c1573d349047dceeb60ecf783a049a1dd4de7a51d0c9bcb0d55ab200001" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig en gerijpt#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jersey belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Landana#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 647, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 719, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "400 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008442", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008442", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008442" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008442" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008442", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jersey belegen, van Landana, van, 7 € 19 cent, voor, 6 € 47 cent, 400 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008442" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008442" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008442" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jersey belegen, van Landana", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008442" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008468-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 60 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008468" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008468", - "name": "Landana Jersey oud", - "decorators": [], - "display_price": 539, - "image_id": "68704d611acd57545b20bc86aa5ff90ad005c60ddf6ee8a27684e0a1457f0553", - "max_count": 50, - "unit_quantity": "320 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e2af9ae5f6b34fc1a2d3f3f9ea6244ca9cec599f960988449c41847b50b52414" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008468" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e2af9ae5f6b34fc1a2d3f3f9ea6244ca9cec599f960988449c41847b50b52414" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Rijk en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Jersey oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Landana#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 539, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 599, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "320 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008468", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008468", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008468" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008468" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008468", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jersey oud, van Landana, van, 5 € 99 cent, voor, 5 € 39 cent, 320 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008468" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008468" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008468" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Jersey oud, van Landana", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008468" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016824-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 60 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016824" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016824", - "name": "Landana truffelkaas", - "decorators": [], - "display_price": 494, - "image_id": "e85e1dbaed28f5a00e7849127ee09e9fab047c5bc53d085856aecf8a5ea7df8e", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "369d8011cb098d924072ffd8ecf0e893bb419ed67444c2e31bc48897a30ebd43" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016824" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "369d8011cb098d924072ffd8ecf0e893bb419ed67444c2e31bc48897a30ebd43" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hollandse specialiteit#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Truffelkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Landana#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 494, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 549, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016824", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016824", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016824" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016824" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016824", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Truffelkaas, van Landana, van, 5 € 49 cent, voor, 4 € 94 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016824" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016824" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016824" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Truffelkaas, van Landana", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016824" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008562-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 61 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008562" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008562", - "name": "De Rotterdamsche Oude plat stukkie 48+", - "decorators": [], - "display_price": 795, - "image_id": "920ca8d95b144656c4d010241a6993b4757906924302cb077d381ad1fc7ee81f", - "max_count": 50, - "unit_quantity": "450 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "cee013c8c4715462b203530cad05c2fae7dae1ed9c89a08ff31df60211463547" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008562" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "cee013c8c4715462b203530cad05c2fae7dae1ed9c89a08ff31df60211463547" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gerijpt op houten planken#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Plat stukkie oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)De Rotterdamsche Oude#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 795, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "450 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008562", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008562", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008562" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008562" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008562", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Plat stukkie 48+, van De Rotterdamsche Oude, voor, 7 € 95 cent, 450 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008562" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008562" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008562" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Plat stukkie 48+, van De Rotterdamsche Oude", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008562" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1060428-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 61 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1060428" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1060428", - "name": "Picnic geraspte jonge kaas 48+", - "decorators": [], - "display_price": 319, - "image_id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3", - "max_count": 50, - "unit_quantity": "2 x 175 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060428" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "60deb386665336a935ce3b101568b39efd41efc098a170f0085f93dd5c569ce3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt jong#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 6, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 2, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "alignment": "CENTER", - "distribution": "START", - "padding": { - "bottom": 2 - }, - "spacing": 2, - "type": "STACK", - "children": [ - { - "textAlignment": "END", - "textAttributes": { - "size": 12, - "weight": "SEMIBOLD", - "color": "#333333" - }, - "markdown": "#(#787570)2#(#787570)", - "type": "RICH_TEXT" - }, - { - "iconKey": "crossSmall", - "width": 6, - "height": 6, - "color": "#787570", - "type": "ICON" - } - ] - }, - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "2 x 175 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1060428", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1060428", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060428" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060428" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1060428", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jonge kaas 48+, van Picnic, voor, 6 € 38 cent, 2 x 175 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060428" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060428" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060428" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jonge kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060428" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013766-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 62 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013766" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013766", - "name": "Picnic geraspte milde kaas", - "decorators": [], - "display_price": 319, - "image_id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd", - "max_count": 50, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013766" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d3385b94e7c9aca56b6411c910b19ccf85f62c8add4c8398d2f4ecb0454de5fd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte milde kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)250 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013766", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013766", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013766" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013766" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013766", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte milde kaas, van Prijskampioen, voor, 3 € 19 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013766" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013766" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013766" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte milde kaas, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013766" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013573-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 62 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013573" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013573", - "name": "Picnic geraspte belegen kaas 48+", - "decorators": [], - "display_price": 395, - "image_id": "2bb349da23831bc135979c27fd7bf290270fab356824f453d0b1b90008ef8d6e", - "max_count": 50, - "unit_quantity": "175 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7b7e8eff780a207c17a4753b8bcb59b3beb5a45b56cab4ca2e15c660f723534e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013573" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7b7e8eff780a207c17a4753b8bcb59b3beb5a45b56cab4ca2e15c660f723534e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 395, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "175 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013573", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013573", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013573" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013573" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013573", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte belegen kaas 48+, van Picnic, voor, 3 € 95 cent, 175 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013573" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013573" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013573" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013573" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013784-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 63 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013784" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013784", - "name": "Picnic geraspte pittige kaas", - "decorators": [], - "display_price": 339, - "image_id": "122d051534f246e53cab566cd7608e391bc8d0a382d46ec43c6d68ec668e8115", - "max_count": 50, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "bdaa202db08f018a1169a96c996bc6fbd6d57bd82169379905d8b93d77f039ae" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013784" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "bdaa202db08f018a1169a96c996bc6fbd6d57bd82169379905d8b93d77f039ae" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte pittige kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 339, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)250 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013784", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013784", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013784" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013784" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013784", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte pittige kaas, van Prijskampioen, voor, 3 € 39 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013784" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013784" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013784" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte pittige kaas, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013784" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010191-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 63 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010191" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010191", - "name": "Parmigiano reggiano 32+ flakes", - "decorators": [], - "display_price": 265, - "image_id": "8bb957a475503a7c60c98008ba816f200f98d8f21265f7ea1994621e9b885c57", - "max_count": 50, - "unit_quantity": "Flakes (80 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "098f146958f3e33684b061e3a95a51756c078ffd8278f2a8be0f97813d91372b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010191" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "098f146958f3e33684b061e3a95a51756c078ffd8278f2a8be0f97813d91372b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Rijk en pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Parmigiano Reggiano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 265, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "Flakes (80 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010191", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010191", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010191" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010191" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010191", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano 32+ flakes, van Picnic, voor, 2 € 65 cent, Flakes (80 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010191" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010191" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010191" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano 32+ flakes, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010191" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013748-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 64 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013748" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013748", - "name": "Picnic geraspte jong belegen kaas 30+", - "decorators": [], - "display_price": 349, - "image_id": "35fd9b0fe38ccc01c4a574b74425d1960cf0b0335132d4ca4dfd5655f2e48e54", - "max_count": 50, - "unit_quantity": "175 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e0a587e1b5e6d4589f17457fa6e5bc922e83dabdde17e3fbf89d12d90f6efe20" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013748" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e0a587e1b5e6d4589f17457fa6e5bc922e83dabdde17e3fbf89d12d90f6efe20" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt jong belegen 30+#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 349, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "175 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013748", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013748", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013748" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013748" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013748", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jong belegen kaas 30+, van Picnic, voor, 3 € 49 cent, 175 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013748" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013748" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013748" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jong belegen kaas 30+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013748" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013550-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 64 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013550" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013550", - "name": "Picnic geraspte jong belegen kaas 48+", - "decorators": [], - "display_price": 345, - "image_id": "98eecea610e89fd4fda75b19884fa0c1e52fb02e1c344e7f5246f1a43b8cecec", - "max_count": 50, - "unit_quantity": "175 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "98f62a46a8a544944575a948a63189050b25ab37c7a6f198ca4aacadc5868163" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013550" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "98f62a46a8a544944575a948a63189050b25ab37c7a6f198ca4aacadc5868163" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt jong belegen#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 345, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "175 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013550", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013550", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013550" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013550" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013550", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jong belegen kaas 48+, van Picnic, voor, 3 € 45 cent, 175 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013550" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013550" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013550" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte jong belegen kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013550" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013594-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 65 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013594" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013594", - "name": "Picnic geraspte oude kaas 48+", - "decorators": [], - "display_price": 415, - "image_id": "51cb2c5b01c6a1593c63642c31e801dd785853e22b9b630745bde506ea75c8dd", - "max_count": 50, - "unit_quantity": "175 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "802f430a29dc9c35cfc6aa3956f5e7b8e21c1b7e74516607c6f32e66ea63f66f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013594" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "802f430a29dc9c35cfc6aa3956f5e7b8e21c1b7e74516607c6f32e66ea63f66f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "2e halve prijs", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Picnic#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 415, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "175 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013594", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013594", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013594" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013594" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013594", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte oude kaas 48+, van Picnic, voor, 4 € 15 cent, 175 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013594" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013594" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013594" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte oude kaas 48+, van Picnic", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013594" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1006732-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 65 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1006732" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1006732", - "name": "Vergeer geraspte pasta kaas", - "decorators": [], - "display_price": 289, - "image_id": "c28d32fe1c5ff00b3180cfd311f3db3f57b83dc61e62a02161f635c676918d75", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e3951ef8f0a6d912ced1a211f89eca4f73d349ed2096fc79e7e65d656dd6fc9f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006732" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e3951ef8f0a6d912ced1a211f89eca4f73d349ed2096fc79e7e65d656dd6fc9f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Speciaal voor pasta#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 289, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1006732", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1006732", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006732" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006732" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1006732", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte pasta kaas, van Vergeer, voor, 2 € 89 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006732" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006732" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006732" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte pasta kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006732" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016936-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 66 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016936" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016936", - "name": "Vergeer geraspte cheddar", - "decorators": [], - "display_price": 299, - "image_id": "de0010ee1669d20ae59bd00caea1c905772b25bb551248bce5a1265f856a2254", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7f6f28d576dc61fd02e3d6d90f65bad1320acd8e6e6643998e6eaee7cf74f31c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016936" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7f6f28d576dc61fd02e3d6d90f65bad1320acd8e6e6643998e6eaee7cf74f31c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte cheddar#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 299, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016936", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016936", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016936" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016936" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016936", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte cheddar, van Vergeer, voor, 2 € 99 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016936" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016936" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016936" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte cheddar, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016936" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1006926-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 66 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1006926" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1006926", - "name": "Vergeer geraspte gratin kaas", - "decorators": [], - "display_price": 269, - "image_id": "3a87e0217f2ab1c10374243251d01ac6d0f7c8e63238624cf75d31bf5830817d", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1140a27108e5b06fd9ba23ebaa1ce76f22994d8f695a96d2c4256b4b7e955c96" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006926" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1140a27108e5b06fd9ba23ebaa1ce76f22994d8f695a96d2c4256b4b7e955c96" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Speciaal voor ovengratin#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 269, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1006926", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1006926", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006926" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006926" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1006926", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte gratin kaas, van Vergeer, voor, 2 € 69 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1006926" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006926" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1006926" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte gratin kaas, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1006926" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1050031-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 67 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1050031" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1050031", - "name": "Vergeer geraspte geitenkaas 50+", - "decorators": [], - "display_price": 285, - "image_id": "8566a5187e6443c7e3bd96d55f12cace753f61e6619c9aa29a16b31b241c5b3a", - "max_count": 99, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8a9059a7ebe7af22e2d154372a09919b99d7e9e102849dd989ba22685735a5d3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1050031" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8a9059a7ebe7af22e2d154372a09919b99d7e9e102849dd989ba22685735a5d3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte geitenkaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Vergeer#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 285, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1050031", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1050031", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1050031" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1050031" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1050031", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte geitenkaas 50+, van Vergeer, voor, 2 € 85 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1050031" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1050031" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1050031" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte geitenkaas 50+, van Vergeer", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1050031" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009829-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 67 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009829" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009829", - "name": "Parrano rasp", - "decorators": [], - "display_price": 249, - "image_id": "696200362c5386275c171ebaefca2e00a50997a32016f33fdf83ace22a71abaa", - "max_count": 50, - "unit_quantity": "100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "6136f4e5345806cb64237e851a513ee9e71d83c3337c906f95388a45f8ccb0c7" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009829" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "6136f4e5345806cb64237e851a513ee9e71d83c3337c906f95388a45f8ccb0c7" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Originale#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 249, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009829", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009829", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009829" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009829" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009829", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Rasp, van Parrano Originale, voor, 2 € 49 cent, 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009829" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009829" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009829" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Rasp, van Parrano Originale", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009829" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1045119-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 68 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1045119" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1045119", - "name": "Parrano robusto snippers", - "decorators": [], - "display_price": 249, - "image_id": "961c56ffca181d570214a7d8b6b3c06a46e21ad1881d341ab35489de5f26c882", - "max_count": 50, - "unit_quantity": "80 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "6eb89f5ecd95c40f86eea465ba757039b60d61ec2d54092ea51918effac2868a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045119" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "6eb89f5ecd95c40f86eea465ba757039b60d61ec2d54092ea51918effac2868a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Kaassnippers#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Robusto#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 249, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "80 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1045119", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1045119", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045119" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045119" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1045119", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto snippers, van Parrano Robusto, voor, 2 € 49 cent, 80 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045119" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045119" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045119" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto snippers, van Parrano Robusto", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045119" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011565-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 68 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011565" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011565", - "name": "Parrano originale strooikaas", - "decorators": [], - "display_price": 399, - "image_id": "e714125770adab75d53eaefc51a0f8f4271d4f3bf643c7574b24c2e47453392e", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7bcd7827d937c4e2f45b8ef37aa38174ba75ee4b4deed15f3b4fa86810cdf43e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011565" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7bcd7827d937c4e2f45b8ef37aa38174ba75ee4b4deed15f3b4fa86810cdf43e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)In hersluitbare bus#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Strooikaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Originale#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011565", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011565", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011565" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011565" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011565", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Originale strooikaas, van Parrano Originale, voor, 3 € 99 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011565" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011565" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011565" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Originale strooikaas, van Parrano Originale", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011565" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1045117-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 69 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1045117" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1045117", - "name": "Parrano robusto verse poeder", - "decorators": [], - "display_price": 189, - "image_id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd", - "max_count": 50, - "unit_quantity": "60 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045117" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "07ac0acafee1c19fb01f4f3109ec6f4577b7a8c391787db90482bb8849bde2dd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Kaaspoeder#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Robusto#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 189, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "60 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1045117", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1045117", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045117" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045117" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1045117", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto verse poeder, van Parrano Robusto, voor, 1 € 89 cent, 60 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045117" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045117" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045117" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto verse poeder, van Parrano Robusto", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045117" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008769-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 69 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008769" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008769", - "name": "Parrano snippers", - "decorators": [], - "display_price": 245, - "image_id": "0f79d8e7748e1cce050879eab8c201ee28e5c3687f2eaff42349a65744ca669a", - "max_count": 50, - "unit_quantity": "80 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "bc8f0e0adafd82b70554f648c29642e517f444160b96f605f0751b7c3abe098f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008769" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "bc8f0e0adafd82b70554f648c29642e517f444160b96f605f0751b7c3abe098f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Kaassnippers#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Originale#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 245, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "80 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008769", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008769", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008769" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008769" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008769", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Snippers, van Parrano Originale, voor, 2 € 45 cent, 80 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008769" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008769" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008769" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Snippers, van Parrano Originale", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008769" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1133564-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 70 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1133564" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1133564", - "name": "Parrano mozzarella rasp", - "decorators": [], - "display_price": 285, - "image_id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4", - "max_count": 99, - "unit_quantity": "135 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1133564" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "b732dc017cd098305185ecb3e0193b244997f43d94db3cbf35258cec2f80cdc4" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella rasp#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 285, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "135 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1133564", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1133564", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1133564" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1133564" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1133564", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella rasp, van Parrano, voor, 2 € 85 cent, 135 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1133564" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1133564" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1133564" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella rasp, van Parrano", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1133564" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1067233-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 70 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1067233" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1067233", - "name": "Parrano robusto poederbus", - "decorators": [], - "display_price": 399, - "image_id": "661a4aeb39d7c2de9b382ab43c539713ebf8dc6a806934bc2cd2395f0ef134a8", - "max_count": 99, - "unit_quantity": "140 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "37f97433aee934da05edd2a883cee49101f55a84ad10555ed21c2b5c0c2e2e7d" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067233" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "37f97433aee934da05edd2a883cee49101f55a84ad10555ed21c2b5c0c2e2e7d" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)In hersluitbare bus#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Strooikaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Parrano Robusto#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "140 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1067233", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1067233", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067233" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067233" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1067233", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto poederbus, van Parrano Robusto, voor, 3 € 99 cent, 140 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1067233" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067233" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1067233" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Robusto poederbus, van Parrano Robusto", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1067233" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1045915-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 71 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1045915" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1045915", - "name": "Galbani grana padano grattugiato grosso", - "decorators": [], - "display_price": 199, - "image_id": "1bb8ffbf62e2c2d7f0c84b68bd4191ad0942f1041274cfa9f4031d11c2d33702", - "max_count": 50, - "unit_quantity": "70 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e2e8e5b97fad085885f4e101b80e98f0a64a7513741b38f640eb25da264cf08f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045915" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e2e8e5b97fad085885f4e101b80e98f0a64a7513741b38f640eb25da264cf08f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte Grana Padano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 199, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "70 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1045915", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1045915", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045915" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045915" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1045915", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano grattugiato grosso, van Galbani, voor, 1 € 99 cent, 70 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045915" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045915" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045915" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano grattugiato grosso, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045915" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014683-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 71 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014683" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014683", - "name": "Galbani mozzarella geraspt", - "decorators": [], - "display_price": 269, - "image_id": "df7557da29376ab02fd641c4fa1e27b75ab55b0b00f47e0418680fc146756b5b", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ec315b27a6efa4f0722bfc0b02210792c830259e2d71ac768abfd49448c38966" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014683" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ec315b27a6efa4f0722bfc0b02210792c830259e2d71ac768abfd49448c38966" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Hersluitbaar#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte mozzarella#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 269, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014683", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014683", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014683" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014683" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014683", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella geraspt, van Galbani, voor, 2 € 69 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014683" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014683" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014683" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella geraspt, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014683" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1051273-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 72 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1051273" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1051273", - "name": "Galbani grana padano poeder", - "decorators": [], - "display_price": 199, - "image_id": "a97846597a64fc30ec8f0a2e812979fda242fa06b1c76ebe020048887f381610", - "max_count": 99, - "unit_quantity": "60 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5ba70e77c9aeaf9cb64217dd07f93efe9aa0863729a8bcaf8875c61b5eea9bc1" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051273" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5ba70e77c9aeaf9cb64217dd07f93efe9aa0863729a8bcaf8875c61b5eea9bc1" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Grana Padano poeder#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 199, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "60 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1051273", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1051273", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051273" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051273" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1051273", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano poeder, van Galbani, voor, 1 € 99 cent, 60 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051273" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051273" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051273" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano poeder, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051273" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1004851-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 72 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1004851" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1004851", - "name": "Colla grana padano rasp", - "decorators": [], - "display_price": 309, - "image_id": "7b2d9b8cc07a92518128b74b4c24fe284f425b24ce3042180817a9b49118d8c5", - "max_count": 50, - "unit_quantity": "100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c95ce0cfcaef57bc952caa96fdb827a393f99f3221176c3c6c7a47e6d477e914" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004851" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c95ce0cfcaef57bc952caa96fdb827a393f99f3221176c3c6c7a47e6d477e914" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en licht pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte Grana Padano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Colla#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 309, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1004851", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1004851", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004851" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004851" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1004851", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano rasp, van Colla, voor, 3 € 9 cent, 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1004851" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004851" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1004851" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano rasp, van Colla", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1004851" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1015870-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 73 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1015870" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1015870", - "name": "Babybel mini kaas", - "decorators": [], - "display_price": 399, - "image_id": "77b278d96108810e4cfefa0fc394aa86526b4011d500408cfb5f0d13dfa10489", - "max_count": 50, - "unit_quantity": "10 stuks" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c9db995f03bdbfa7c1c007d3f1da7b99088f216379bb6d9680e9b6a5cf185aad" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015870" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c9db995f03bdbfa7c1c007d3f1da7b99088f216379bb6d9680e9b6a5cf185aad" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Babybel mini#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "10 stuks", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1015870", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1015870", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015870" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015870" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1015870", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mini kaas, voor, 3 € 99 cent, 10 stuks", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015870" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015870" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015870" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mini kaas", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015870" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1015891-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 73 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1015891" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1015891", - "name": "Babybel mini rolls kaas", - "decorators": [], - "display_price": 286, - "image_id": "aaa85857318c172feadf95792f341d5130a8e10e65b8e8cd980fad7451f20feb", - "max_count": 50, - "unit_quantity": "5 stuks" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ca155e729115021a9ed9ff8f89f775be15165c827f97e4aa91c6b13b5de5ad1f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015891" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ca155e729115021a9ed9ff8f89f775be15165c827f97e4aa91c6b13b5de5ad1f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Babybel mini rolls#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 286, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "5 stuks", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1015891", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1015891", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015891" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015891" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1015891", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mini rolls kaas, voor, 2 € 86 cent, 5 stuks", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1015891" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015891" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1015891" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mini rolls kaas", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1015891" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1000384-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 74 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1000384" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1000384", - "name": "La Vache Qui Rit Cheez dippers", - "decorators": [], - "display_price": 319, - "image_id": "8f1d63f7d1937e2d46ec10f85f6d728c7114c2a599fd18ae645c44c6449e7ed0", - "max_count": 50, - "unit_quantity": "5 kuipjes" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5d1c46d05af22fa0694d41ada43d29704258ed9dab99b8aa354beaeea83e634e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1000384" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5d1c46d05af22fa0694d41ada43d29704258ed9dab99b8aa354beaeea83e634e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Met smeerkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Cheez dippers#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)La Vache Qui Rit#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "5 kuipjes", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1000384", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1000384", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1000384" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1000384" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1000384", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Cheez dippers, van La Vache Qui Rit, voor, 3 € 19 cent, 5 kuipjes", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1000384" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1000384" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1000384" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Cheez dippers, van La Vache Qui Rit", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1000384" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1017824-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 74 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1017824" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1017824", - "name": "Cheestrings original", - "decorators": [], - "display_price": 349, - "image_id": "409c55be5d3af7da31c3213b680dec922bd00db33053f06a9aa056723fa761b7", - "max_count": 50, - "unit_quantity": "8 stuks" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5e9a7e99d90f43009513fb78aca95027762b9427d7a81d0048a05edd98f132e9" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017824" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5e9a7e99d90f43009513fb78aca95027762b9427d7a81d0048a05edd98f132e9" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Afpelbare kaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Cheestrings#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 349, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "8 stuks", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1017824", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1017824", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017824" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017824" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1017824", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original, voor, 3 € 49 cent, 8 stuks", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1017824" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017824" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1017824" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1017824" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011419-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 75 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011419" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011419", - "name": "Old Amsterdam geraspte kaas 48+", - "decorators": [], - "display_price": 329, - "image_id": "5ebbba98332ab95b87a1cd7bb8ddb2d9ca003a23fc31679b6ab4f1b6c4c0812c", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7dbc88e94829ea12cc9caf142b8c2b7848f740f676540d96ca772f789c1903a4" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011419" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7dbc88e94829ea12cc9caf142b8c2b7848f740f676540d96ca772f789c1903a4" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspt oud#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Old Amsterdam#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 329, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011419", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011419", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011419" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011419" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011419", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte kaas 48+, van Old Amsterdam, voor, 3 € 29 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011419" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011419" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011419" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte kaas 48+, van Old Amsterdam", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011419" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016220-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 75 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016220" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016220", - "name": "Solo Italia Parmigiano Reggiano poeder 32+", - "decorators": [], - "display_price": 239, - "image_id": "e6746e1fa1b6adde92103d3e6071bf8a5487feafeaf81adbeb065c42bca96338", - "max_count": 99, - "unit_quantity": "60 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "6bbe2f51bbd5f145f350d8fd8986ac77a5393bb807faf894c35d9f36cb0acdd6" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016220" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "6bbe2f51bbd5f145f350d8fd8986ac77a5393bb807faf894c35d9f36cb0acdd6" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Rijk en pittig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Parmigiano Reggiano poeder#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Solo Italia#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 239, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "60 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016220", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016220", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016220" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016220" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016220", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano Reggiano poeder 32+, van Solo Italia, voor, 2 € 39 cent, 60 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016220" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016220" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016220" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano Reggiano poeder 32+, van Solo Italia", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016220" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012712-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 76 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012712" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012712", - "name": "Solo Italia geraspte Italiaanse kaas", - "decorators": [], - "display_price": 149, - "image_id": "f969be976b2e60f9a33924b25c8e776c95dea63ed9767f42a7d6498f9199ec42", - "max_count": 99, - "unit_quantity": "40 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f58ce6b0071d186a55e1e3cc9b3e031de43b40dadf5cff551f693c07e6a621a3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012712" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f58ce6b0071d186a55e1e3cc9b3e031de43b40dadf5cff551f693c07e6a621a3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Solo Italia#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 149, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)Klein#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)40 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012712", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012712", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012712" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012712" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012712", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte Italiaanse kaas, van Solo Italia, voor, 1 € 49 cent, 40 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012712" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012712" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012712" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte Italiaanse kaas, van Solo Italia", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012712" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1141841-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 76 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1141841" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1141841", - "name": "Trentin geraspte grana padano", - "decorators": [], - "display_price": 309, - "image_id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656", - "max_count": 99, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141841" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e70c36b1d6bfa03a9af6b856a172518ff4831243adb1d6fcc711d17720b21656" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Lichtzoet en kruidig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Geraspte grana padano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Trentin#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 309, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1141841", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1141841", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141841" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141841" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1141841", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte grana padano, van Trentin, voor, 3 € 9 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141841" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141841" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141841" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Geraspte grana padano, van Trentin", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141841" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011326-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 77 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011326" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011326", - "name": "Bastiaansen bio geraspte kaas mild 48+", - "decorators": [], - "display_price": 369, - "image_id": "62a63ae060ceb65b65147cbfa9609ee933d680af38fbd3eabeac19c3a0c76bc4", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f1dcca7fd61373de6e52fb7d4cbd26fe54fc32bb2df6369b059cb60f07c38ba2" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011326" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f1dcca7fd61373de6e52fb7d4cbd26fe54fc32bb2df6369b059cb60f07c38ba2" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zachte smaak#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio geraspte milde#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Bastiaansen#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 369, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011326", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011326", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011326" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011326" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011326", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio geraspte kaas mild 48+, van Bastiaansen, voor, 3 € 69 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011326" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011326" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011326" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio geraspte kaas mild 48+, van Bastiaansen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011326" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011347-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 77 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011347" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011347", - "name": "Bastiaansen bio geraspte kaas pikant 48+", - "decorators": [], - "display_price": 385, - "image_id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011347" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "20a788e5e9875cc4d39868a3af93549b999c8b2eda3a69b0cee38751af8e6340" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig en hartig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio geraspte pikante kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Bastiaansen#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 385, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011347", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011347", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011347" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011347" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011347", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio geraspte kaas pikant 48+, van Bastiaansen, voor, 3 € 85 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011347" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011347" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011347" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio geraspte kaas pikant 48+, van Bastiaansen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011347" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008206-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 78 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008206" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008206", - "name": "Galbani mozzarella", - "decorators": [], - "display_price": 205, - "image_id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008206" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "34be48cade67ac76ab75ab2d88f7028c4ff23a09a086a6682c92484ff1c6f123" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Van Italiaanse koemelk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 205, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008206", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008206", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008206" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008206" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008206", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella, van Galbani, voor, 2 € 5 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008206" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008206" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008206" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008206" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003167-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 78 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003167" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003167", - "name": "Galbani mozzarella maxi", - "decorators": [], - "display_price": 279, - "image_id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003167" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c8c3d10a64ffc11eb1e449804e2aa1c88c061d2b78e5211ecdb3f57506c734b6" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella maxi#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 279, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003167", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003167", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003167" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003167" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003167", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella maxi, van Galbani, voor, 2 € 79 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003167" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003167" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003167" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella maxi, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003167" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1005235-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 79 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1005235" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1005235", - "name": "Galbani mozzarella light", - "decorators": [], - "display_price": 219, - "image_id": "a5237d0c35e377a539a8544f09877e475d5053881b46491f7fc8c99059bbe7d6", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "36f59125eebc44504d9ce40f74dcf64876657606baa6f6cebf5f6608d67c73b0" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005235" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "36f59125eebc44504d9ce40f74dcf64876657606baa6f6cebf5f6608d67c73b0" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)50% minder vet#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella light#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 219, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1005235", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1005235", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005235" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005235" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1005235", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella light, van Galbani, voor, 2 € 19 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1005235" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005235" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1005235" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella light, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1005235" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1051272-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 79 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1051272" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1051272", - "name": "Galbani burrata", - "decorators": [], - "display_price": 379, - "image_id": "5b898dd4d5821bd07355dc805d8d760ce19c5a38de15573c719f7634227e31ad", - "max_count": 99, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "67f83f6ee51534a0813cafe5de4fd5e4a7526742994a7254f3b23365820291b3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051272" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "67f83f6ee51534a0813cafe5de4fd5e4a7526742994a7254f3b23365820291b3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en rijk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Burrata#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 379, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1051272", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1051272", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051272" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051272" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1051272", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata, van Galbani, voor, 3 € 79 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051272" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051272" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051272" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051272" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011289-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 80 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011289" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011289", - "name": "Galbani mozzarella di bufala", - "decorators": [], - "display_price": 325, - "image_id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011289" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d8a0cb294c21dbfd56f3d192ee75dff6b55df3b42706f27470a769ba9f950bde" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 325, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011289", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011289", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011289" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011289" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011289", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala, van Galbani, voor, 3 € 25 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011289" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011289" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011289" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011289" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1045147-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 80 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1045147" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1045147", - "name": "Galbani mozzarella lactosevrij", - "decorators": [], - "display_price": 199, - "image_id": "8c82f9d5ec4dc2d90c6ec2051c30e6e9b9cf63c43829f7d164a53366875acd98", - "max_count": 50, - "unit_quantity": "100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "990e4758797a14f2f74a840f2017e845ca75d00c597512f2af169cc5fbaa8e40" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045147" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "990e4758797a14f2f74a840f2017e845ca75d00c597512f2af169cc5fbaa8e40" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella lactosevrij#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 199, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1045147", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1045147", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045147" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045147" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1045147", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella lactosevrij, van Galbani, voor, 1 € 99 cent, 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1045147" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045147" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1045147" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella lactosevrij, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1045147" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100210-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 81 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100210" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100210", - "name": "Galbani mozzarella di bufala maxi", - "decorators": [], - "display_price": 469, - "image_id": "2ad9b3472fa8b90a7d1883fae3ffcbe7da4017884d5963551dbb8db726c55a20", - "max_count": 99, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f29528c1f81ecb9be1a3c82296ff4199d36f3e469f6f801abd1a71e317011d80" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100210" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f29528c1f81ecb9be1a3c82296ff4199d36f3e469f6f801abd1a71e317011d80" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella di bufala maxi#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 469, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)200 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100210", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100210", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100210" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100210" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100210", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala maxi, van Galbani, voor, 4 € 69 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100210" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100210" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100210" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala maxi, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100210" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011271-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 81 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011271" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011271", - "name": "Galbani mozzarella mini's", - "decorators": [], - "display_price": 279, - "image_id": "379c259dd2ebdafc8b321c65c18212ef1581a447d4fc69693bdd21879e5cfe93", - "max_count": 50, - "unit_quantity": "20 stuks" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "dc0a1e1ca0dc66347a26b7b52177a35bda38302cf0c2abfafc41d763581193fc" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011271" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "dc0a1e1ca0dc66347a26b7b52177a35bda38302cf0c2abfafc41d763581193fc" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Fris en zacht#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella mini's#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 279, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "20 stuks", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011271", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011271", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011271" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011271" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011271", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella mini's, van Galbani, voor, 2 € 79 cent, 20 stuks", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011271" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011271" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011271" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella mini's, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011271" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014623-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 82 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014623" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014623", - "name": "Galbani mozzarella latte di bufala mini", - "decorators": [], - "display_price": 369, - "image_id": "a13f3ae0a9a3eb187765b5b7b68b14ed78b1a74b9281ea3fa28efaedf4827a50", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1a7a049cd704b4eb0b5dba8e6f69b80711d0febc856b22edfa28d27b1c62db57" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014623" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1a7a049cd704b4eb0b5dba8e6f69b80711d0febc856b22edfa28d27b1c62db57" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Kleine bolletjes#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 369, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014623", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014623", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014623" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014623" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014623", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella latte di bufala mini, van Galbani, voor, 3 € 69 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014623" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014623" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014623" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella latte di bufala mini, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014623" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011253-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 82 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011253" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011253", - "name": "Galbani Italiaanse ricotta cremosa", - "decorators": [], - "display_price": 329, - "image_id": "bd69d4d2cd844851dfcc41c528520ff483a88cddcddc5d23b3302be2809aaa47", - "max_count": 50, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "9fe4c1c510c45afc5c2091392ffa3a09ff01acd0aac8f33d7105355c7660f3fd" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011253" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "9fe4c1c510c45afc5c2091392ffa3a09ff01acd0aac8f33d7105355c7660f3fd" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Ricotta cremosa#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 329, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "250 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011253", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011253", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011253" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011253" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011253", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse ricotta cremosa, van Galbani, voor, 3 € 29 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011253" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011253" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011253" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse ricotta cremosa, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011253" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100841-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 83 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100841" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100841", - "name": "Galbani ricotta", - "decorators": [], - "display_price": 149, - "image_id": "590a1cf441d0c7f0e93485b3daf2bc4aad98c2bf657521c85d2f4263fabb5d82", - "max_count": 99, - "unit_quantity": "100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8465bcc6a85a6c606f577688fbdd89278ac95dd569cf48961c18a5ede490f8bf" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100841" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8465bcc6a85a6c606f577688fbdd89278ac95dd569cf48961c18a5ede490f8bf" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Ricotta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 149, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100841", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100841", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100841" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100841" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100841", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Ricotta, van Galbani, voor, 1 € 49 cent, 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100841" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100841" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100841" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Ricotta, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100841" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011232-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 83 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011232" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011232", - "name": "Galbani mascarpone", - "decorators": [], - "display_price": 339, - "image_id": "8251e9daa51080adb2c9554d43a13b039ff33a9e55e365bdef44261073904b37", - "max_count": 50, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "591b37f0872ebc528a5752b0da220a12c9adfcba0e83ba8cd5bf531a78808bb5" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011232" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "591b37f0872ebc528a5752b0da220a12c9adfcba0e83ba8cd5bf531a78808bb5" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mascarpone#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 339, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "250 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011232", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011232", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011232" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011232" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011232", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Galbani, voor, 3 € 39 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011232" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011232" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011232" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011232" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100116-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 84 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100116" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100116", - "name": "Galbani mascarpone", - "decorators": [], - "display_price": 615, - "image_id": "d13c3b9cd49d3220935d5542b89de80ac9c478985cbce09e4ca6846a816df713", - "max_count": 99, - "unit_quantity": "500 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "c92cb113ff64a3bc14c12c56d8e23ad27df87d6f2922b2bafa041079880e058d" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100116" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "c92cb113ff64a3bc14c12c56d8e23ad27df87d6f2922b2bafa041079880e058d" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mascarpone#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Galbani#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 615, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)500 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100116", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100116", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100116" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100116" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100116", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Galbani, voor, 6 € 15 cent, 500 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100116" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100116" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100116" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Galbani", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100116" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014176-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 84 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014176" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014176", - "name": "Salakis Griekse feta", - "decorators": [], - "display_price": 335, - "image_id": "abf68bc03391141123390ce5b2a4f96c7fc913ee0608e578c9782898ba752518", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "19cb8a1600ae95ac83e7779d0e64d8d93e3a13b6a8e482b94a5ed5ea54fc6710" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014176" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "19cb8a1600ae95ac83e7779d0e64d8d93e3a13b6a8e482b94a5ed5ea54fc6710" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Salakis#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 335, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014176", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014176", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014176" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014176" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014176", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Griekse feta, van Salakis, voor, 3 € 35 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014176" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014176" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014176" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Griekse feta, van Salakis", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014176" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1014238-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 85 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1014238" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1014238", - "name": "Salakis halloumi", - "decorators": [], - "display_price": 363, - "image_id": "1621a361c2b76c3b226ab3bd3d8f3bca77833de5b9ac3f4a13b44acf7bec365a", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "29495b26c9504e3b1efe6c1cbc87ca5ceeb6426e869271ae45b469f73702129e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014238" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "29495b26c9504e3b1efe6c1cbc87ca5ceeb6426e869271ae45b469f73702129e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gekruid met munt#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Halloumi#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Salakis#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 363, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1014238", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1014238", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014238" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014238" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1014238", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Halloumi, van Salakis, voor, 3 € 63 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1014238" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014238" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1014238" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Halloumi, van Salakis", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1014238" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013832-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 85 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013832" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013832", - "name": "Apetina original witte kaas minder vet", - "decorators": [], - "display_price": 172, - "image_id": "3826b829b4cc658344e84ef1195721cca3fb546d3754bcf5cd702719c1b90b1c", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "8c80384caa2151bf7ceafb325119413c84b8b9270d6943eaf101de98febb0008" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013832" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "8c80384caa2151bf7ceafb325119413c84b8b9270d6943eaf101de98febb0008" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Minder vet#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 172, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 215, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013832", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013832", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013832" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013832" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013832", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original witte kaas minder vet, van Apetina, van, 2 € 15 cent, voor, 1 € 72 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013832" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013832" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013832" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original witte kaas minder vet, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013832" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013856-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 86 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013856" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013856", - "name": "Apetina original witte kaas", - "decorators": [], - "display_price": 175, - "image_id": "30a6ed9b74387e6a66de320be1c3c52bcb0adf24567bbb137b19928f1914db81", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "1ad16d0aa2e6492e6f5e245c9989ef034070705308874e088f95d61a9cb1615a" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013856" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "1ad16d0aa2e6492e6f5e245c9989ef034070705308874e088f95d61a9cb1615a" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt met koemelk#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 175, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 219, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013856", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013856", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013856" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013856" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013856", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original witte kaas, van Apetina, van, 2 € 19 cent, voor, 1 € 75 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013856" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013856" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013856" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Original witte kaas, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013856" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012253-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 86 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012253" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012253", - "name": "Apetina witte kaasblokjes in olie met kruiden", - "decorators": [], - "display_price": 239, - "image_id": "6e1075d9a0d350c678dcfca45b0957d8d15c4a68479ba526f2d0652a1506d123", - "max_count": 50, - "unit_quantity": "265 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "90165873b5ae833a35a849ac38abcaedbe7e7dafdeebe607da3567e624e480de" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012253" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "90165873b5ae833a35a849ac38abcaedbe7e7dafdeebe607da3567e624e480de" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)In olie met kruiden#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 239, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 299, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "265 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012253", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012253", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012253" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012253" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012253", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes in olie met kruiden, van Apetina, van, 2 € 99 cent, voor, 2 € 39 cent, 265 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012253" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012253" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012253" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes in olie met kruiden, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012253" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1003261-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 87 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1003261" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1003261", - "name": "Apetina witte kaasblokjes", - "decorators": [], - "display_price": 255, - "image_id": "b7b8522082213f644da89831999f444a9cbf0765549f64dae393d5f6a850c606", - "max_count": 50, - "unit_quantity": "430 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "fa5052432d0d4f1b704d4e86f0f1fa3f2b959a97aa61b3bbbd6960faa0a6f769" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003261" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "fa5052432d0d4f1b704d4e86f0f1fa3f2b959a97aa61b3bbbd6960faa0a6f769" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig en kruimelig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 255, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 319, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "430 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1003261", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1003261", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003261" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003261" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1003261", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes, van Apetina, van, 3 € 19 cent, voor, 2 € 55 cent, 430 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1003261" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003261" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1003261" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1003261" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016477-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 87 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016477" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016477", - "name": "Apetina witte kaasblokjes minder vet", - "decorators": [], - "display_price": 255, - "image_id": "ec9e10921285b0f1237d3ff818fa26963400b281d920162ed032f28d653251c7", - "max_count": 50, - "unit_quantity": "430 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "26623e2770081f49a28a22f7883612dc74c02c381e5e3b5461430df6ba6c484e" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016477" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "26623e2770081f49a28a22f7883612dc74c02c381e5e3b5461430df6ba6c484e" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Minder vet#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 255, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 319, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "430 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016477", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016477", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016477" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016477" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016477", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes minder vet, van Apetina, van, 3 € 19 cent, voor, 2 € 55 cent, 430 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016477" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016477" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016477" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes minder vet, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016477" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1051854-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 88 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1051854" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1051854", - "name": "Apetina witte kaasblokjes met kruiden", - "decorators": [], - "display_price": 143, - "image_id": "3e8da4cd66186bc76c0ace985edf98bf6dace421b537de44fc39f4d420a89d3d", - "max_count": 99, - "unit_quantity": "100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "95b8b59b05f2c6c261b2da08c34b31632395ba55890fddaf660d6717878eda52" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051854" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "95b8b59b05f2c6c261b2da08c34b31632395ba55890fddaf660d6717878eda52" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "20% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Met kruiden#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaasblokjes#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Apetina#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 143, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 179, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1051854", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1051854", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051854" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051854" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1051854", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes met kruiden, van Apetina, van, 1 € 79 cent, voor, 1 € 43 cent, 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1051854" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051854" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1051854" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaasblokjes met kruiden, van Apetina", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1051854" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016131-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 88 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016131" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016131", - "name": "Latte Corso Italiaanse mozzarella 50+", - "decorators": [], - "display_price": 189, - "image_id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016131" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e0ba3010ed872559e529b4b2b8ca64b5ece0f43e0a8cd87cc4563fd900e333d2" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Latte Corso#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 189, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016131", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016131", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016131" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016131" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016131", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse mozzarella 50+, van Latte Corso, voor, 1 € 89 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016131" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016131" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016131" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse mozzarella 50+, van Latte Corso", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016131" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010932-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 89 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010932" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010932", - "name": "Eru plakken met cheddar", - "decorators": [], - "display_price": 179, - "image_id": "84b5acf36c53366e30d6dd9c45c758c7b831df4e2d2e3ac5e82e8b46a5423638", - "max_count": 50, - "unit_quantity": "8 plakjes" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ff8c705643b24a14c38c84cdb5c5bbfa99d7a0f4493327eb3873e9896b4ac84c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010932" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ff8c705643b24a14c38c84cdb5c5bbfa99d7a0f4493327eb3873e9896b4ac84c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Cheddar#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Eru#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 179, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "8 plakjes", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010932", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010932", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010932" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010932" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010932", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Plakken met cheddar, van Eru, voor, 1 € 79 cent, 8 plakjes", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010932" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010932" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010932" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Plakken met cheddar, van Eru", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010932" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010360-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 89 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010360" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010360", - "name": "Solo Italia parmigiano reggiano", - "decorators": [], - "display_price": 599, - "image_id": "01c2640aa73770a1accd609d2d4ff08ab8bdf67c7ad9a7d58b44ea38aa5557b7", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "265dc893251be98ed65e9c18fb768620fa2ff3d237c82144baa5bcbeb24ff00c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010360" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "265dc893251be98ed65e9c18fb768620fa2ff3d237c82144baa5bcbeb24ff00c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Solo Italia#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 599, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010360", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010360", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010360" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010360" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010360", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano, van Solo Italia, voor, 5 € 99 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010360" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010360" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010360" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano, van Solo Italia", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010360" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008572-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 90 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008572" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008572", - "name": "Solo Italia grana padano", - "decorators": [], - "display_price": 499, - "image_id": "7931c1f268ef7bdd412dd0b8530750ab03dd9b179623780434abe1deeba54656", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "041bde367813660632e9d3e32c214bf49bb5dcfe7028cb29e04f528f2ee65b1b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008572" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "041bde367813660632e9d3e32c214bf49bb5dcfe7028cb29e04f528f2ee65b1b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Grana padano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Solo Italia#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 499, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008572", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008572", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008572" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008572" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008572", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano, van Solo Italia, voor, 4 € 99 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008572" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008572" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008572" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano, van Solo Italia", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008572" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1100117-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 90 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1100117" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1100117", - "name": "Président smeltkaas met cheddar", - "decorators": [], - "display_price": 239, - "image_id": "1b047c5691c5d3c2943111c12ce2463782e05a8f836ac2bc097a74de87602af2", - "max_count": 99, - "unit_quantity": "8 plakjes" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "43a6ab0732f9fbf35057c8dfa7328f6cd6357cc6ead86d0903ef66f0ab1f42e1" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100117" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "43a6ab0732f9fbf35057c8dfa7328f6cd6357cc6ead86d0903ef66f0ab1f42e1" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Voor op de hamburger#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Smeltkaas met cheddar#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Président#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 239, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "8 plakjes", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1100117", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1100117", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100117" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100117" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1100117", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Smeltkaas met cheddar, van Président, voor, 2 € 39 cent, 8 plakjes", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1100117" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100117" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1100117" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Smeltkaas met cheddar, van Président", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1100117" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1009572-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 91 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1009572" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1009572", - "name": "Emmi kaasfondue original", - "decorators": [], - "display_price": 599, - "image_id": "31d5f34d72833d0b267f9ec0edd683453986dec39be652d6d277940df32bd97b", - "max_count": 50, - "unit_quantity": "2 pers (400 g)" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "5c3dfa6c8ddbc8662bc6933cae2c80ee9e81fcb59ab5d2c5d506e915d2cd3a49" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009572" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "5c3dfa6c8ddbc8662bc6933cae2c80ee9e81fcb59ab5d2c5d506e915d2cd3a49" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Zwitersland#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Kaasfondue#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Emmi#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 599, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "2 pers (400 g)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1009572", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1009572", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009572" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009572" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1009572", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Kaasfondue original, van Emmi, voor, 5 € 99 cent, 2 pers (400 g)", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1009572" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009572" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1009572" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Kaasfondue original, van Emmi", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1009572" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080598-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 91 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080598" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080598", - "name": "Emmi raclette", - "decorators": [], - "display_price": 399, - "image_id": "678b2726a97aa9876da2445a0635af2f59d22e5ef0fc906d62310ae90fbaeba1", - "max_count": 99, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "e687b196f48c5242b6dee516f4a65ae29c0e9a5beaf1b9efe87bd0ca9329342b" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080598" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "e687b196f48c5242b6dee516f4a65ae29c0e9a5beaf1b9efe87bd0ca9329342b" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zwiterse smeltkaas#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Raclette#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Emmi#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080598", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080598", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080598" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080598" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080598", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Raclette, van Emmi, voor, 3 € 99 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080598" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080598" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080598" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Raclette, van Emmi", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080598" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1060454-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 92 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1060454" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1060454", - "name": "Mozzarella", - "decorators": [], - "display_price": 89, - "image_id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811", - "max_count": 50, - "unit_quantity": "2 x 125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060454" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "4d16c7411b5ca6177c372118423b526b709fa9ea0c9799cf71ce9f1c68988811" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060454&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 6, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 2, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "alignment": "CENTER", - "distribution": "START", - "padding": { - "bottom": 2 - }, - "spacing": 2, - "type": "STACK", - "children": [ - { - "textAlignment": "END", - "textAttributes": { - "size": 12, - "weight": "SEMIBOLD", - "color": "#333333" - }, - "markdown": "#(#787570)2#(#787570)", - "type": "RICH_TEXT" - }, - { - "iconKey": "crossSmall", - "width": 6, - "height": 6, - "color": "#787570", - "type": "ICON" - } - ] - }, - { - "price": 89, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "2 x 125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1060454", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1060454", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060454" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060454" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1060454", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella, van Prijskampioen, voor, 1 € 78 cent, 2 x 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060454&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060454" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060454" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060454" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1141842-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 119)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 92 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1141842" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1141842", - "name": "Trentin italiaanse mozzarella", - "decorators": [], - "display_price": 205, - "image_id": "46c02385d6263d12abe980a2564b3f265636c2e41fcc6b2d8a5199fdb71456f6", - "max_count": 99, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "ed9a47b31a7f7414b7c0070c92652e434f51c5ee24d4a438965539c49e16992f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141842" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "ed9a47b31a7f7414b7c0070c92652e434f51c5ee24d4a438965539c49e16992f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Italiaanse mozzarella#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Trentin#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 205, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1141842", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1141842", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141842" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141842" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1141842", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse mozzarella, van Trentin, voor, 2 € 5 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141842" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141842" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141842" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Italiaanse mozzarella, van Trentin", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141842" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1013873-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 93 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1013873" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1013873", - "name": "Trentin grana padano", - "decorators": [], - "display_price": 379, - "image_id": "7279cf7f7dff96c2120219398e80de63f226ba27c1298c1a45009021be31f587", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "42712748a8862aacf34cd4285dd367b725aa4ca714da05be3016f22ee2952c43" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013873" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "42712748a8862aacf34cd4285dd367b725aa4ca714da05be3016f22ee2952c43" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Lichtzoet en kruidig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Grana padano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 379, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1013873", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1013873", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013873" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013873" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1013873", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano, van Prijskampioen, voor, 3 € 79 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1013873" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013873" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1013873" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Grana padano, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1013873" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1141843-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 93 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1141843" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1141843", - "name": "Trentin ricotta", - "decorators": [], - "display_price": 199, - "image_id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11", - "max_count": 99, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141843" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "39a520b313cb243cce346b0b35787c1702697cfcef3473d664bf49d8f01b8f11" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Zacht en romig#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Ricotta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Trentin#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 199, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "250 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1141843", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1141843", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141843" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141843" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1141843", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Ricotta, van Trentin, voor, 1 € 99 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141843" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141843" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141843" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Ricotta, van Trentin", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141843" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1141844-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 94 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1141844" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1141844", - "name": "Trentin mascarpone", - "decorators": [], - "display_price": 169, - "image_id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969", - "max_count": 99, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141844" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "17ce03c30b582b4aee172bb6c248a54cf77a48aad3db6691593449d40ad0b969" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141844&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mascarpone#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Trentin#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 169, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "250 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1141844", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1141844", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141844" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141844" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1141844", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Trentin, voor, 1 € 69 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1141844&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1141844" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141844" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mascarpone, van Trentin", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1141844" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1080696-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 117)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 94 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1080696" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1080696", - "name": "Parmigiano reggiano DOP 30+", - "decorators": [], - "display_price": 481, - "image_id": "a41abcf137d1a392fe292d813fb2cdb84b4e59974f8de7b4f59541fd1bbb4697", - "max_count": 99, - "unit_quantity": "180 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "3ad223e48f596cd8a9fc7131c793c49a6015b097dc45b6970d61020acd3a58c7" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080696" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "3ad223e48f596cd8a9fc7131c793c49a6015b097dc45b6970d61020acd3a58c7" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Noord-Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 481, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 535, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "180 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1080696", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1080696", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080696" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080696" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1080696", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano DOP 30+, van, 5 € 35 cent, voor, 4 € 81 cent, 180 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1080696" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080696" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1080696" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Parmigiano reggiano DOP 30+", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1080696" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1010314-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 95 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1010314" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1010314", - "name": "Picnic pecorino 35+", - "decorators": [], - "display_price": 413, - "image_id": "6e5dd99bdf76b64d67552bc55fed6f950a557357ee0047a2ed7a0abe90e9785f", - "max_count": 50, - "unit_quantity": "circa 125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d2bc6667f48f922caeea191cd5b96b43e5f358da378483057bae6df2b5756ebf" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010314" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d2bc6667f48f922caeea191cd5b96b43e5f358da378483057bae6df2b5756ebf" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Pittig en zilt#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Pecorino#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 413, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 459, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "circa 125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1010314", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1010314", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010314" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010314" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1010314", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Pecorino 35+, van, 4 € 59 cent, voor, 4 € 13 cent, circa 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1010314" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010314" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1010314" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Pecorino 35+", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1010314" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1011996-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 117)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 95 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1011996" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1011996", - "name": "Bio Parmigiano reggiano DOP 30+", - "decorators": [], - "display_price": 652, - "image_id": "11f6683c0d4f97148670e875b108000efe83137a2452d777e97d05c10212f55d", - "max_count": 50, - "unit_quantity": "170 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "def11eef0db3b908e2dcedb930255d280f4b61767dd5b9b34be00a2cf8d64d61" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011996" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "def11eef0db3b908e2dcedb930255d280f4b61767dd5b9b34be00a2cf8d64d61" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)DOP 30+#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Parmigiano reggiano#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 652, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 725, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "170 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1011996", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1011996", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011996" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011996" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1011996", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio Parmigiano reggiano DOP 30+, van, 7 € 25 cent, voor, 6 € 52 cent, 170 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1011996" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011996" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1011996" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio Parmigiano reggiano DOP 30+", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1011996" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1002970-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 96 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1002970" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1002970", - "name": "Picnic verse feta 40+", - "decorators": [], - "display_price": 400, - "image_id": "8d00a3cb449221afcd01183c23e15a8132fc4e7af040ee91f61049dce8fc0c5d", - "max_count": 50, - "unit_quantity": "circa 167 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "4ea736ab8c05522d1b2ff808e205629bde8210b5c717977923d777ec62c643d1" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002970" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "4ea736ab8c05522d1b2ff808e205629bde8210b5c717977923d777ec62c643d1" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - }, - { - "absolutePosition": { - "bottom": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "backgroundColor": "#fbd92b", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 6 - }, - "type": "CONTAINER", - "child": { - "spacing": 4, - "height": 22, - "axis": "HORIZONTAL", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "textAttributes": { - "size": 14, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "10% korting", - "type": "RICH_TEXT" - } - ] - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 400, - "fontSize": 22, - "color": "#b40117", - "type": "PRICE" - }, - { - "price": 445, - "fontSize": 16, - "isCrossed": true, - "color": "#c9c6c3", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "circa 167 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1002970", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1002970", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002970" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002970" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1002970", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Verse feta 40+, van, 4 € 45 cent, voor, 4 € 0 cent, circa 167 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1002970" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002970" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1002970" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Verse feta 40+", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1002970" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1134116-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 110)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 96 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1134116" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1134116", - "name": "Picnic witte kaas", - "decorators": [], - "display_price": 179, - "image_id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36", - "max_count": 99, - "unit_quantity": "250 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1134116" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "a78b8c56e1d5e33b397d9378e156ff15ed75eb041e71a90a3c82477098f1fb36" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Witte kaas#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)#(#95710F)Prijskampioen#(#95710F)#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 179, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "overflow": "hidden", - "borderRadius": 6, - "backgroundColor": "#268484", - "padding": { - "top": 1, - "bottom": 1, - "left": 5, - "right": 5 - }, - "type": "CONTAINER", - "child": { - "textAttributes": { - "size": 12, - "weight": "BOLD", - "color": "#333333" - }, - "markdown": "#(#ffffff)XL#(#ffffff)", - "type": "RICH_TEXT" - } - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "#(#268484)250 gram#(#268484)", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1134116", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1134116", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1134116" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1134116" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1134116", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaas, van Prijskampioen, voor, 1 € 79 cent, 250 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1134116" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1134116" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1134116" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Witte kaas, van Prijskampioen", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1134116" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012218-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 97 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012218" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012218", - "name": "Kolios bio Griekse feta", - "decorators": [], - "display_price": 319, - "image_id": "52cf8410e1b87f727377273bb23c6b0ebcba0f044ce6da54bb3a5b7916b7f59d", - "max_count": 50, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "d49a21bee005a6b7f2efdcf53a4806df69420d115a4dd0e399b4e5c0a79949b5" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012218" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "d49a21bee005a6b7f2efdcf53a4806df69420d115a4dd0e399b4e5c0a79949b5" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kolios#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 319, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012218", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012218", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012218" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012218" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012218", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio Griekse feta, van Kolios, voor, 3 € 19 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012218" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012218" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012218" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio Griekse feta, van Kolios", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012218" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1012197-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 97 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1012197" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1012197", - "name": "Kolios Griekse feta", - "decorators": [], - "display_price": 399, - "image_id": "e51161d255adec842a3d114e32ccf533c3a6f106c72ea9e6accbeac3c29315a1", - "max_count": 50, - "unit_quantity": "200 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "46b281a1bc37c11101a9276821ab7bc34d46c06c8aa68d0729ce85a593994f9c" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012197" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "46b281a1bc37c11101a9276821ab7bc34d46c06c8aa68d0729ce85a593994f9c" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Griekenland#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Kolios#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "200 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1012197", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1012197", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012197" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012197" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1012197", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Griekse feta, van Kolios, voor, 3 € 99 cent, 200 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1012197" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012197" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1012197" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Griekse feta, van Kolios", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1012197" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1060460-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 98 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1060460" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1060460", - "name": "Deliziosa burrata", - "decorators": [], - "display_price": 249, - "image_id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3", - "max_count": 50, - "unit_quantity": "2 x 100 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060460" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "f00a53f915ba91b154b9e09f6f58144b1cfe8193fbc149e149b2468f3cdc14b3" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "locationPin", - "width": 12, - "fallback": { - "id": "picnic-page/f38885a431765c590183da164bc4db0d4bb2214ea2067d948f94b11962413b55" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Puglia, Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Burrata#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Deliziosa#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 6, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "END", - "spacing": 2, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "alignment": "CENTER", - "distribution": "START", - "padding": { - "bottom": 2 - }, - "spacing": 2, - "type": "STACK", - "children": [ - { - "textAlignment": "END", - "textAttributes": { - "size": 12, - "weight": "SEMIBOLD", - "color": "#333333" - }, - "markdown": "#(#787570)2#(#787570)", - "type": "RICH_TEXT" - }, - { - "iconKey": "crossSmall", - "width": 6, - "height": 6, - "color": "#787570", - "type": "ICON" - } - ] - }, - { - "price": 249, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "2 x 100 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1060460", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1060460", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060460" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060460" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1060460", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata, van Deliziosa, voor, 4 € 98 cent, 2 x 100 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1060460" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060460" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1060460" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata, van Deliziosa", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1060460" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1008597-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 98 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1008597" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1008597", - "name": "Deliziosa burrata truffel", - "decorators": [], - "display_price": 439, - "image_id": "f0b8f8bc72142ac6d304980a5f33145369ed5614b4350a22b34d6fdadd01a609", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "17c6242cc1c4faea210a59127d61a1c30590cab01a6b4d9c1867b2347f89ebb6" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008597" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "17c6242cc1c4faea210a59127d61a1c30590cab01a6b4d9c1867b2347f89ebb6" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Met truffel#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Burrata#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Deliziosa#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 439, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1008597", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1008597", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008597" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008597" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1008597", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata truffel, van Deliziosa, voor, 4 € 39 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1008597" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008597" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1008597" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Burrata truffel, van Deliziosa", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1008597" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1007681-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 99 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1007681" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1007681", - "name": "Ponte Reale bio mozzarella di bufala", - "decorators": [], - "display_price": 279, - "image_id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1007681" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "eae81148e4d52dd0795495021626234b7fd5d4aa4bbe81f8f19df4a45c1d8d07" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - }, - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Zuid-Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio mozzarella di bufala#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Ponte Reale#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 279, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1007681", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1007681", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1007681" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1007681" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1007681", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio mozzarella di bufala, van Ponte Reale, voor, 2 € 79 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1007681" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1007681" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1007681" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio mozzarella di bufala, van Ponte Reale", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1007681" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1016104-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 99 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1016104" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1016104", - "name": "Ponte Reale mozzarella di bufala 50+", - "decorators": [], - "display_price": 369, - "image_id": "4835f2afc7a3d67d4e4fe20ac25bac97c2278301047d4fea645f2fcfdf5175f0", - "max_count": 50, - "unit_quantity": "125 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "cfdd670ecd06ab3bbf9efe22f7f0c4b4aeae28355d03bb9e3aea29b7c273059f" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016104" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "cfdd670ecd06ab3bbf9efe22f7f0c4b4aeae28355d03bb9e3aea29b7c273059f" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "top": 8, - "right": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" - }, - "activeOpacity": 0.8, - "hitSlop": { - "horizontal": 22, - "vertical": 22 - }, - "type": "TOUCHABLE", - "child": { - "backgroundColor": "#b40117", - "borderRadius": 4, - "height": 22, - "padding": { - "left": 6, - "right": 4 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "height": "100%", - "spacing": 2, - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "iconKey": "percentage", - "fallback": { - "id": "picnic-page/34a29c8efdbc2f15f1a95b8e15239786298e50566e19e8a586f5dff52606041e" - }, - "color": "#ffffff", - "width": 14, - "height": 14, - "type": "ICON" - }, - { - "textAttributes": { - "size": 13, - "weight": "REGULAR", - "color": "#ffffff", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Gemaakt in Zuid-Italië#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Mozzarella di bufala#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Ponte Reale#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 369, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "125 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1016104", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1016104", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016104" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016104" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1016104", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala 50+, van Ponte Reale, voor, 3 € 69 cent, 125 gram", - "accessibilityHint": "voor meer informatie tik twee keer, dubbel tik met twee vingers voor bundelbonus", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1016104" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016104" - } - } - }, - { - "name": "magicTap", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1016104" - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Mozzarella di bufala 50+, van Ponte Reale", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1016104" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1146123-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 100 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1146123" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1146123", - "name": "Dodoni feta", - "decorators": [], - "display_price": 395, - "image_id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25", - "max_count": 99, - "unit_quantity": "180 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146123" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "9744f5e249422a6e2d43c4b44b84a97d1683ef0be7ff8ae61a9178400bdb0e25" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146123&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "stars", - "width": 15, - "fallback": { - "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Nieuw#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Dodoni#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 395, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "180 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1146123", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1146123", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146123" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146123" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1146123", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Feta, van Dodoni, voor, 3 € 95 cent, 180 gram", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146123&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146123" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146123" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Feta, van Dodoni", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146123" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1146189-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 135)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 2, - "y": 100 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1146189" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1146189", - "name": "Dodoni biologische feta", - "decorators": [], - "display_price": 349, - "image_id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38", - "max_count": 99, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146189" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "7e9298ca37fd966ab0e6fbad55c1f8ba586f72b25b97b89cd6235be9b0fecc38" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [ - { - "absolutePosition": { - "left": 8, - "top": 8 - }, - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "spacing": 10, - "type": "STACK", - "children": [ - { - "height": 26, - "width": 26, - "type": "CONTAINER", - "child": { - "iconKey": "bio", - "fallback": { - "id": "picnic-page/b7bb1b128accc0fbb236905a26c990748985f24e4723174a77f8b19cbf421433" - }, - "width": 26, - "height": 26, - "type": "ICON" - } - } - ] - } - } - ] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146189&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "stars", - "width": 15, - "fallback": { - "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Nieuw#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Bio biologische feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Dodoni#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 349, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1146189", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1146189", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146189" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146189" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1146189", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio biologische feta, van Dodoni, voor, 3 € 49 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146189&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146189" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146189" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Bio biologische feta, van Dodoni", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146189" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "selling-unit-s1146190-tile", - "size": { - "crossAxis": "(SCREEN_WIDTH - 16 - 4 ) / 2", - "mainAxis": "(((SCREEN_WIDTH - 16 - 4 ) / 2) + 115)" - }, - "analytics": { - "contexts": [ - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_component/jsonschema/1-1-0", - "data": { - "type": "page_tile", - "position": { - "x": 1, - "y": 101 - } - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/product/jsonschema/1-0-0", - "data": { - "product_id": "s1146190" - } - }, - { - "schema": "iglu:tech.picnic.snowplow.analytics/page_section/jsonschema/1-0-0", - "data": { - "name": "Alle resultaten - Shown", - "type": "page_tile" - } - }, - { - "schema": "iglu:nl.picnic.snowplow/search/jsonschema/1-4-0", - "data": { - "search_id": "02d582c9-0b23-4782-95b1-37afeceb4ea1", - "query": "kaas", - "query_canonical": "kaas", - "is_first_search_result": true, - "product_ids": [ - "s1009042", - "s1080484", - "s1013342", - "s1014773", - "s1010740", - "s1012094", - "s1009345", - "s1009019", - "s1090206", - "s1140096", - "s1013370", - "s1014816", - "s1005488", - "s1012113", - "s1008973", - "s1010386", - "s1090207", - "s1008442", - "s1013428", - "s1014842", - "s1012130", - "s1010759", - "s1014890", - "s1009066", - "s1080485", - "s1005883", - "s1008996", - "s1003063", - "s1015953", - "s1080483", - "s1010636", - "s1008468", - "s1008562", - "s1010656", - "s1012522", - "s1010676", - "s1005465", - "s1009322", - "s1009409", - "s1080486", - "s1014796", - "s1016824", - "s1009088", - "s1014937", - "s1009108", - "s1010813", - "s1070764", - "s1011269", - "s1017774", - "s1011513", - "s1049053", - "s1003849", - "s1112263", - "s1017469", - "s1009151", - "s1010229", - "s1100903", - "s1010832", - "s1070765", - "s1011288", - "s1011533", - "s1049054", - "s1017839", - "s1003797", - "s1011483", - "s1016296", - "s1009171", - "s1018188", - "s1001810", - "s1100904", - "s1010848", - "s1070766", - "s1011306", - "s1011473", - "s1049055", - "s1013842", - "s1003874", - "s1067234", - "s1009130", - "s1010884", - "s1011387", - "s1009215", - "s1009281", - "s1100902", - "s1017976", - "s1100906", - "s1100905", - "s1008513", - "s1004825", - "s1002879", - "s1011235", - "s1011751", - "s1011839", - "s1017375", - "s1075331", - "s1010992", - "s1010955", - "s1066068", - "s1010575", - "s1011551", - "s1011431", - "s1012736", - "s1010597", - "s1010900", - "s1003823", - "s1045079", - "s1004399", - "s1009366", - "s1004421", - "s1011642", - "s1011010", - "s1005928", - "s1009259", - "s1004377", - "s1100907", - "s1001822", - "s1004443", - "s1010918", - "s1009470", - "s1013461", - "s1060428", - "s1013766", - "s1011326", - "s1013748", - "s1013550", - "s1013573", - "s1013784", - "s1011347", - "s1013594", - "s1011419", - "s1009829", - "s1045119", - "s1011565", - "s1045117", - "s1008769", - "s1133564", - "s1067233", - "s1045915", - "s1014683", - "s1051273", - "s1004851", - "s1006732", - "s1016220", - "s1012712", - "s1141841", - "s1010191", - "s1016936", - "s1006926", - "s1050031", - "s1015870", - "s1015891", - "s1000384", - "s1017824", - "s1008206", - "s1003167", - "s1005235", - "s1051272", - "s1011289", - "s1045147", - "s1100210", - "s1016131", - "s1060454", - "s1141842", - "s1060460", - "s1008597", - "s1007681", - "s1016104", - "s1011271", - "s1014623", - "s1010360", - "s1008572", - "s1013873", - "s1080696", - "s1010314", - "s1011996", - "s1014176", - "s1012218", - "s1012197", - "s1002970", - "s1146123", - "s1146189", - "s1146190", - "s1013832", - "s1013856", - "s1012253", - "s1003261", - "s1016477", - "s1051854", - "s1134116", - "s1014238", - "s1011253", - "s1100841", - "s1141843", - "s1011232", - "s1100116", - "s1141844", - "s1009572", - "s1080598", - "s1010932", - "s1100117" - ], - "recipe_ids": [], - "initial_filters": [ - "Recipes", - "Actie", - "Picnic", - "Plakken", - "Stuk", - "Jong", - "Jong belegen", - "Belegen", - "Oud", - "Borrelkaas" - ], - "selected_filters": [], - "initial_sorting_strategies": [ - "RELEVANCE", - "PRICE", - "PRICE_PER_KILO", - "CONTENT" - ], - "selected_sorting_strategy": "RELEVANCE" - } - } - ] - }, - "content": { - "type": "SELLING_UNIT_TILE", - "sellingUnit": { - "id": "s1146190", - "name": "Dodoni verse feta", - "decorators": [], - "display_price": 399, - "image_id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2", - "max_count": 99, - "unit_quantity": "150 gram" - }, - "sellingUnitImageConfiguration": { - "derivativeType": "padded", - "extension": "webp", - "id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2" - } - }, - "viewComponentType": "REGULAR_SELLING_UNIT_TILE", - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "END", - "backgroundColor": "#ffffff", - "height": "100%", - "type": "STACK", - "children": [ - { - "accessible": true, - "hideFromAccessibility": true, - "width": "100%", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "onPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146190" - } - }, - "activeOpacity": 1, - "activeColor": "rgba(0, 0, 0, 0.1)", - "activeScale": 0.98, - "borderRadius": 12, - "backgroundColor": "#E3EEEE", - "type": "TOUCHABLE", - "child": { - "width": "100%", - "height": "100%", - "overflow": "hidden", - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": "NONE", - "type": "IMAGE" - }, - { - "absolutePosition": { - "top": 0, - "bottom": 0, - "left": 0, - "right": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-image", - "type": "REFERENCE_CONTAINER", - "child": { - "source": { - "id": "dafccb6324d2f90188273d25da7d0ae42713d9756d13926b0def03ce064a8ba2" - }, - "derivativeType": "padded", - "extension": "webp", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "resizeMode": "CONTAIN", - "type": "IMAGE" - } - } - }, - { - "hideFromAccessibility": true, - "height": "100%", - "width": "100%", - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "id": "selling-unit-label-container", - "presets": { - "EXPANDED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "EXPANDED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - }, - "COLLAPSED_VISIBLE": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 1, - "duration": 150 - } - }, - "COLLAPSED_HIDDEN": { - "marginBottom": { - "type": "TIMING", - "toValue": 36, - "duration": 150 - }, - "opacity": { - "type": "TIMING", - "toValue": 0, - "duration": 150 - } - } - }, - "type": "ANIMATION_CONTAINER", - "child": { - "height": "100%", - "width": "100%", - "axis": "VERTICAL", - "type": "STACK", - "children": [] - } - } - } - ] - } - } - } - }, - { - "overflow": "hidden", - "accessible": true, - "hideFromAccessibility": true, - "borderRadius": 12, - "width": "100%", - "type": "CONTAINER", - "child": { - "activeColor": "rgba(0, 0, 0, 0.05)", - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146190&show_category_action=true" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "distribution": "START", - "alignment": "START", - "spacing": 2, - "padding": { - "top": 8, - "bottom": 8, - "left": 8, - "right": 8 - }, - "type": "STACK", - "children": [ - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "height": 16, - "iconKey": "stars", - "width": 15, - "fallback": { - "id": "picnic-page/04f67e7028828669fdcd8cc6199b94d7110e719f1140f79a5764105733659f68" - }, - "color": "#268484", - "type": "ICON" - }, - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "#(#268484)Nieuw#(#268484)", - "type": "RICH_TEXT" - } - ] - }, - { - "numberOfLines": 2, - "type": "RICH_TEXT", - "children": [ - { - "markdown": "#(#333333)Verse feta#(#333333) ", - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "width": "100%", - "spacing": 4, - "type": "STACK", - "children": [ - { - "textAttributes": { - "size": 14, - "weight": "REGULAR", - "color": "#333333" - }, - "numberOfLines": 1, - "markdown": "#(#333333)Dodoni#(#333333)", - "type": "RICH_TEXT" - } - ] - }, - { - "type": "CONTAINER", - "child": { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 6, - "type": "STACK", - "children": [ - { - "price": 399, - "fontSize": 22, - "color": "#333333", - "type": "PRICE" - } - ] - } - }, - { - "axis": "HORIZONTAL", - "distribution": "START", - "alignment": "CENTER", - "spacing": 4, - "type": "STACK", - "children": [ - { - "numberOfLines": 1, - "flexShrink": 1, - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#787570" - }, - "markdown": "150 gram", - "type": "RICH_TEXT" - } - ] - } - ] - } - } - }, - { - "presentationStyle": "SELLING_UNIT_REGULAR_TILE", - "sellingUnitId": "s1146190", - "color": "#268484", - "secondaryColor": "#E3EEEE", - "type": "UNAVAILABILITY_CONTAINER" - }, - { - "absolutePosition": { - "left": 0, - "top": 0, - "right": 0, - "bottom": 0 - }, - "pointerEvents": "box-none", - "type": "CONTAINER", - "child": { - "width": "100%", - "pointerEvents": "box-none", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "absolutePosition": { - "bottom": 8, - "right": 8, - "left": 8 - }, - "type": "CONTAINER", - "child": { - "color": "#268484", - "showCollapsed": false, - "showCollapsedRemoveButton": true, - "sellingUnitId": "s1146190", - "onIncrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146190" - } - }, - "onDecrementPress": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146190" - } - }, - "type": "STEPPER" - } - } - } - }, - { - "contentType": "SELLING_UNIT", - "sellingUnitId": "s1146190", - "availableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Verse feta, van Dodoni, voor, 3 € 99 cent, 150 gram", - "accessibilityHint": "voor meer informatie tik twee keer", - "accessibilityActions": [ - { - "name": "activate", - "onAction": { - "actionType": "OPEN", - "target": "app.picnic://store/page;id=product-details-page-root,id=s1146190&show_category_action=true" - } - }, - { - "name": "increment", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "ADD", - "sellingUnitId": "s1146190" - } - } - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146190" - } - } - } - ] - }, - "unavailableAccessibility": { - "accessible": true, - "accessibilityRole": "adjustable", - "accessibilityLabel": "Verse feta, van Dodoni", - "accessibilityHint": "dubbel tik om alternatief te kiezen", - "accessibilityActions": [ - { - "name": "activate" - }, - { - "name": "decrement", - "onAction": { - "actionType": "EVENT", - "action": { - "type": "SELLING_UNIT_MUTATION", - "quantity": 1, - "mutation": "REMOVE", - "sellingUnitId": "s1146190" - } - } - } - ] - }, - "type": "ACCESSIBILITY_CONTAINER" - } - ] - } - } - }, - { - "type": "PML", - "id": "missing-selling-unit-suggest-tile", - "size": { - "crossAxis": "6g" - }, - "pml": { - "pmlVersion": "0.1.0", - "images": {}, - "component": { - "onPress": { - "actionType": "OPEN", - "target": "app.picnic://store/product-suggestion" - }, - "type": "TOUCHABLE", - "child": { - "axis": "VERTICAL", - "width": "100%", - "height": "100%", - "backgroundColor": "#ffffff", - "type": "STACK", - "children": [ - { - "width": "100%", - "borderRadius": 12, - "backgroundColor": "#f0e8dd", - "aspectRatio": 1, - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "width": "100%", - "height": "100%", - "type": "STACK", - "children": [ - { - "source": { - "id": "picnic-page/29712dcc4e7f5f6ad4679aa082ba2cb3fb1656d86562f8cf42b50660ba4be28d" - }, - "width": "100%", - "height": "100%", - "resizeMode": "COVER", - "placeholder": { - "resizeMode": "CONTAIN", - "icon": "loadingCarrotTranslucentPadding" - }, - "type": "IMAGE" - }, - { - "width": "100%", - "height": "100%", - "absolutePosition": { - "top": 0, - "left": 0, - "right": 0, - "bottom": 0 - }, - "type": "CONTAINER", - "child": { - "axis": "VERTICAL", - "height": "100%", - "width": "100%", - "distribution": "CENTER", - "alignment": "CENTER", - "type": "STACK", - "children": [ - { - "placeholder": "NONE", - "resizeMode": "CONTAIN", - "source": { - "id": "picnic-page/9c669031f917e72ae7134634680b08c8626b8a4022bec455a633c2d8ade4500c" - }, - "width": 96, - "height": 120, - "type": "IMAGE" - } - ] - } - } - ] - } - }, - { - "width": "100%", - "height": 70, - "axis": "VERTICAL", - "padding": { - "bottom": 8, - "left": 8, - "top": 8, - "right": 8 - }, - "spacing": 2, - "type": "STACK", - "children": [ - { - "markdown": "#(#9C6D2B)Mis je iets?#(#9C6D2B)", - "textAttributes": { - "size": 12, - "weight": "MEDIUM", - "color": "#333333" - }, - "type": "RICH_TEXT" - }, - { - "type": "RICH_TEXT", - "children": [ - { - "textAttributes": { - "size": 16, - "weight": "MEDIUM", - "color": "#333333" - }, - "markdown": "Vraag het aan ", - "type": "RICH_TEXT" - }, - { - "textAttributes": { - "size": 16, - "weight": "REGULAR", - "color": "#333333", - "family": "PicnicSymbols" - }, - "markdown": ">", - "type": "RICH_TEXT" - } - ] - } - ] - } - ] - } - } - } - } - ] - } - ] - } - ] - } - ] - } - }, - "error": {} -} \ No newline at end of file From 35554bf99587f54422d2b812c31d86318317853d Mon Sep 17 00:00:00 2001 From: Maarten Paul Date: Wed, 25 Sep 2024 16:51:29 +0200 Subject: [PATCH 8/9] Delete dummy.py --- dummy.py | 4 ---- 1 file changed, 4 deletions(-) delete mode 100644 dummy.py diff --git a/dummy.py b/dummy.py deleted file mode 100644 index 2f5ad88..0000000 --- a/dummy.py +++ /dev/null @@ -1,4 +0,0 @@ -from python_picnic_api.client import PicnicAPI -picnic = PicnicAPI(username='fam.paul@outlook.com', password='Nan0f00d!', country_code="NL") -results = picnic.search("melk") -print(results) \ No newline at end of file From f1a858c53e1563a08a810551a8d5d3350a1e2da6 Mon Sep 17 00:00:00 2001 From: Maarten Paul Date: Sun, 24 Nov 2024 17:14:29 +0100 Subject: [PATCH 9/9] Delete test.py --- test.py | 43 ------------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 test.py diff --git a/test.py b/test.py deleted file mode 100644 index ba0b956..0000000 --- a/test.py +++ /dev/null @@ -1,43 +0,0 @@ -import requests -import json -from python_picnic_api import PicnicAPI -from collections import deque - -picnic = PicnicAPI(username='fam.paul@outlook.com', password='Nan0f00d!', country_code="NL") -raw_results = picnic._get("/pages/search-page-results?search_term=kaas", add_picnic_headers=True) -#with open('raw_results.json', 'w', encoding='utf-8') as f: -# json.dump(raw_results, f, ensure_ascii=False, indent=4) - -print("Raw results saved to 'raw_results.json'") - -search_results = [] - -def extract_articles(data): - articles = [] - stack = deque([data.get('body', {})]) - - while stack: - item = stack.pop() - - if isinstance(item, dict): - content = item.get('content', {}) - if content.get('type') == 'SELLING_UNIT_TILE' and 'sellingUnit' in content: - articles.append(content['sellingUnit']) - - child = item.get('child') - if child: - stack.append(child) - - children = item.get('children', []) - stack.extend(reversed(children)) - - elif isinstance(item, list): - stack.extend(reversed(item)) - - return articles - -# Assuming raw_results is your API response -search_results = extract_articles(raw_results) - -print(len(search_results)) # Print the number of articles found -print(search_results[:5]) # Print the first 5 articles (if any) \ No newline at end of file