Exemple #1
0
        public static void CreateNewFilter(string email)
        {
            FiltersPage page = new FiltersPage();

            page.BtnCreateNewFilter.Click(7);
            page.TxtFrom.TypeText(email, 7);
            page.CbHasAttachment.Select(7);
            page.LinkCreateFilterWithThisSearch.Click(7);
            page.CbMarkAsImportant.Select(7);
            page.CbDeleteIt.Select(7);
            page.BtnConfirmCreation.Click(7);
        }
Exemple #2
0
        /**
         * Called upon the click on the "filter" button
         * in the page's header.
         * Creates a FilterPage popup, waits for the user
         * to finish with the filters and then applies the
         * updated filter values.
         */
        private void filterSetup()
        {
            // Prepare the dialog with this data
            var state       = StateController.Current.state;
            var filtersPage = new FiltersPage(state.filtersFrom, state.filtersTo, state.filtersUserId);

            filtersPage.onFiltersApplied += (start, end, userId) =>
            {
                // Retain the updated filters
                state.filtersFrom   = start;
                state.filtersTo     = end;
                state.filtersUserId = userId;

                // Reload the work records with the new filters
                reloadData();
            };

            // Present the dialog
            App.mainNav.PushAsync(filtersPage, true);
        }
Exemple #3
0
        public static void GoToFiltersPage()
        {
            FiltersPage page = new FiltersPage();

            page.GoToPage();
        }
        public IActionResult GetFilter(
            int page_index,
            int page_size,
            [FromQuery(Name = "BrandId")] int[] BrandId,
            [FromQuery(Name = "ProductColor")] string[] ProductColor,
            [FromQuery(Name = "_TypeId")] int[] _TypeId,
            [FromQuery(Name = "CollectionId")] int[] CollectionId,
            [FromQuery(Name = "CategoryId")] int[] CategoryId
            )
        {
            IQueryable <Complete_Product> res = null;
            var result = _context.Products.Select(m => m);

            List <dynamic> FiltersList = new List <dynamic>();

            foreach (string item in ProductColor)
            {
                var LProductColor = (from p in _context.Products where p.ProductColor == item group p by p.ProductColor into Color select new { Productcolor = Color.First().ProductColor });
                FiltersList.Add(LProductColor);
            }
            foreach (int item in BrandId)
            {
                var LBrandName = from b in _context.Brands where b.Id == item group b by b.BrandName into BrandName select new { Brandname = BrandName.First().BrandName };
                FiltersList.Add(LBrandName);
            }
            foreach (int item in _TypeId)
            {
                var LTypeName = from t in _context.Types where t.Id == item group t by t._TypeName into TypeName select new { Typename = TypeName.First()._TypeName };
                FiltersList.Add(LTypeName);
            }
            foreach (int item in CategoryId)
            {
                var LCategoryName = from cat in _context.Categories where cat.Id == item group cat by cat.CategoryName into CategoryName select new { Categoryname = CategoryName.First().CategoryName };
                FiltersList.Add(LCategoryName);
            }
            foreach (int item in CollectionId)
            {
                var LCollectionName = from c in _context.Collections where c.Id == item group c by c.CollectionName into CollectionName select new { Collectionname = CollectionName.First().CollectionName };
                FiltersList.Add(LCollectionName);
            }

            if (BrandId.Length != 0)
            {
                result                                                       = result.Where(m => BrandId.Contains(m.BrandId));
                res                                                          = from p in result
                                             let image                       = (from i in _context.ProductImages where p.Id == i.ProductId select i.ImageURL).ToArray()
                                                                    let type = (from t in _context.Types where p._TypeId == t.Id select t._TypeName)
                                                                               let category = (from cat in _context.Categories where p.CategoryId == cat.Id select cat.CategoryName)
                                                                                              let collection                                                             = (from c in _context.Collections where p.CollectionId == c.Id select c.CollectionName)
                                                                                                                                       let brand                         = (from b in _context.Brands where p.BrandId == b.Id select b.BrandName)
                                                                                                                                                               let stock = (from s in _context.Stock where p.StockId == s.Id select s.ProductQuantity)
                                                                                                                                                                           select new Complete_Product()
                {
                    Product = p, Images = image, Type = type, Category = category, Collection = collection, Brand = brand, Stock = stock
                };
            }

            if (ProductColor.Length != 0)
            {
                result                                                       = result.Where(m => ProductColor.Contains(m.ProductColor));
                res                                                          = from p in result
                                             let image                       = (from i in _context.ProductImages where p.Id == i.ProductId select i.ImageURL).ToArray()
                                                                    let type = (from t in _context.Types where p._TypeId == t.Id select t._TypeName)
                                                                               let category = (from cat in _context.Categories where p.CategoryId == cat.Id select cat.CategoryName)
                                                                                              let collection                                                             = (from c in _context.Collections where p.CollectionId == c.Id select c.CollectionName)
                                                                                                                                       let brand                         = (from b in _context.Brands where p.BrandId == b.Id select b.BrandName)
                                                                                                                                                               let stock = (from s in _context.Stock where p.StockId == s.Id select s.ProductQuantity)
                                                                                                                                                                           select new Complete_Product()
                {
                    Product = p, Images = image, Type = type, Category = category, Collection = collection, Brand = brand, Stock = stock
                };
            }

            if (_TypeId.Length != 0)
            {
                result                                                       = result.Where(m => _TypeId.Contains(m._TypeId));
                res                                                          = from p in result
                                             let image                       = (from i in _context.ProductImages where p.Id == i.ProductId select i.ImageURL).ToArray()
                                                                    let type = (from t in _context.Types where p._TypeId == t.Id select t._TypeName)
                                                                               let category = (from cat in _context.Categories where p.CategoryId == cat.Id select cat.CategoryName)
                                                                                              let collection                                                             = (from c in _context.Collections where p.CollectionId == c.Id select c.CollectionName)
                                                                                                                                       let brand                         = (from b in _context.Brands where p.BrandId == b.Id select b.BrandName)
                                                                                                                                                               let stock = (from s in _context.Stock where p.StockId == s.Id select s.ProductQuantity)
                                                                                                                                                                           select new Complete_Product()
                {
                    Product = p, Images = image, Type = type, Category = category, Collection = collection, Brand = brand, Stock = stock
                };
            }

            if (CategoryId.Length != 0)
            {
                result                                                       = result.Where(m => CategoryId.Contains(m.CategoryId));
                res                                                          = from p in result
                                             let image                       = (from i in _context.ProductImages where p.Id == i.ProductId select i.ImageURL).ToArray()
                                                                    let type = (from t in _context.Types where p._TypeId == t.Id select t._TypeName)
                                                                               let category = (from cat in _context.Categories where p.CategoryId == cat.Id select cat.CategoryName)
                                                                                              let collection                                                             = (from c in _context.Collections where p.CollectionId == c.Id select c.CollectionName)
                                                                                                                                       let brand                         = (from b in _context.Brands where p.BrandId == b.Id select b.BrandName)
                                                                                                                                                               let stock = (from s in _context.Stock where p.StockId == s.Id select s.ProductQuantity)
                                                                                                                                                                           select new Complete_Product()
                {
                    Product = p, Images = image, Type = type, Category = category, Collection = collection, Brand = brand, Stock = stock
                };
            }

            if (CollectionId.Length != 0)
            {
                result                                                       = result.Where(m => CollectionId.Contains(m.CollectionId));
                res                                                          = from p in result
                                             let image                       = (from i in _context.ProductImages where p.Id == i.ProductId select i.ImageURL).ToArray()
                                                                    let type = (from t in _context.Types where p._TypeId == t.Id select t._TypeName)
                                                                               let category = (from cat in _context.Categories where p.CategoryId == cat.Id select cat.CategoryName)
                                                                                              let collection                                                             = (from c in _context.Collections where p.CollectionId == c.Id select c.CollectionName)
                                                                                                                                       let brand                         = (from b in _context.Brands where p.BrandId == b.Id select b.BrandName)
                                                                                                                                                               let stock = (from s in _context.Stock where p.StockId == s.Id select s.ProductQuantity)
                                                                                                                                                                           select new Complete_Product()
                {
                    Product = p, Images = image, Type = type, Category = category, Collection = collection, Brand = brand, Stock = stock
                };
            }

            int totalitems = res.Count();
            int totalpages = totalitems / page_size;

            //totalpages+1 because the first page is 1 and not 0
            totalpages = totalpages + 1;
            // string Error = "No product that fullfill these filters";
            // if (res.Count() < 1 | page_index < 1) return Ok(Error);
            //page_index-1 so the first page is 1 and not 0
            page_index = page_index - 1;
            int skip = page_index * page_size;

            res = res.Skip(skip).Take(page_size);
            PaginationPage page = new PaginationPage {
                totalpages = totalpages, totalitems = totalitems, products = res.ToArray()
            };
            FiltersPage filterpage = new FiltersPage {
                FiltersList = FiltersList, page = page
            };

            return(Ok(filterpage));
        }