diff --git a/intellagric-agriecom-web/pom.xml b/intellagric-agriecom-web/pom.xml index 8fc9957a0bea1f42969421a67f060550d4516f1c..e8042c9316ec02db2920b93267daf3efec9ee1f8 100644 --- a/intellagric-agriecom-web/pom.xml +++ b/intellagric-agriecom-web/pom.xml @@ -22,7 +22,11 @@ intellagric-manager-interface 1.0-SNAPSHOT - + + com.intellagric + intellagric-common + 1.0-SNAPSHOT + org.springframework @@ -117,6 +121,13 @@ 1.0-SNAPSHOT compile + + org.jsoup + jsoup + 1.11.3 + + + diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/GrabDataController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/GrabDataController.java new file mode 100644 index 0000000000000000000000000000000000000000..1f2e3cf9ebae58c3501b0539358a0d2646688642 --- /dev/null +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/GrabDataController.java @@ -0,0 +1,181 @@ +package com.intellagric.agriecom.controller.agriecom_index; + + +import com.intellagric.agriecom.module.agriecom_produce.ProduceService; +import com.intellagric.common.pojo.LayuiDataGridResult; +import com.intellagric.common.utils.UUIDUtils; +import com.intellagric.pojo.AgriecomProduce; +import org.apache.http.HttpEntity; +import org.apache.http.client.ClientProtocolException; +import org.apache.http.client.methods.CloseableHttpResponse; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClients; +import org.apache.http.util.EntityUtils; +import org.jsoup.Jsoup; +import org.jsoup.nodes.Document; +import org.jsoup.nodes.Element; +import org.jsoup.select.Elements; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.io.IOException; +import java.util.Date; + +@Controller +public class GrabDataController { + + @Autowired + private ProduceService produceService; + + @RequestMapping("/index/grabData") + @ResponseBody + public String grabData(String fruitName,String categoryId){ + System.out.println(fruitName); + System.out.println(categoryId); + + for(int i =1;i<2;i++) { + //获取url + String url = "http://www.cnhnb.com/p/"+fruitName+"-0-0-0-0-"+i+"/"; + //爬取网页信息 + String html = pickData(url); + //获取html中的内容 + Document document = Jsoup.parse(html); + //获取html class 为product-content-ul 的节点 + Elements divs = document.getElementsByClass("product-bg"); + + + for(Element e :divs){ + AgriecomProduce p=new AgriecomProduce(); + + p.setProduceId(UUIDUtils.getID()); + //categoryId分类 + p.setCategoryId(categoryId); + + //显示一张图片 + Elements imgEle= e.select("img.s-image"); + String img=imgEle.get(0).attr("src")+","; + p.setProduceImg(img); + + e=e.selectFirst("#fruit-text"); + //产品名称 + Element nameEle= e.selectFirst("span.fruit-explain"); + String name=nameEle.text(); + p.setProduceName(name); + + //单位 + Elements unitEle= e.select("li span.Jin"); + String unit=unitEle.get(0).text(); + p.setUnit(unit); + //价格 + Elements priceEle= e.select("li span.fruit-price"); + String price=priceEle.get(0).text(); + p.setPrice(Float.parseFloat(price)); + //producingArea产地 + Elements placeEle= e.select("li span.place"); + String producingArea=placeEle.get(1).text(); + p.setProducingArea(producingArea); + //商家名称 + + + //进去产品详情页面,再抓取数据 + + //商品编号 + Elements proIdEle= e.select("a.seller"); + String proId=proIdEle.get(0).attr("href"); + String urlPro = "http://www.cnhnb.com"+proId; + //爬取网页信息 + String htmlPro = pickData(urlPro); + //获取html中的内容 + Document documentPro = Jsoup.parse(htmlPro); + + + //图片区 + Elements imgUl = documentPro.getElementsByClass("ul.clearfix"); + //图片完善 + Elements imgEles= imgUl.select("img.s-image"); + for(int j=1;j1) + params=params.substring(0,params.length()-2);//切掉最后的; + p.setProduceParameter(params); +// System.out.println(produceService); + produceService.insertProduce(p); + + } + + } + + return "1111"; + } + /* + * 爬取网页信息 + */ + private static String pickData(String url) { + CloseableHttpClient httpclient = HttpClients.createDefault(); + try { + HttpGet httpget = new HttpGet(url); + CloseableHttpResponse response = httpclient.execute(httpget); + try { + // 获取响应实体 + HttpEntity entity = response.getEntity(); + // 打印响应状态 + if (entity != null) { + return EntityUtils.toString(entity); + } + } finally { + response.close(); + } + } catch (ClientProtocolException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } finally { + // 关闭连接,释放资源 + try { + httpclient.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + return null; + } + +} diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/IndexController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/IndexController.java index 92e7389159513de15c1138dceb09de83308e0067..e53ef1a249673335a0216f615e03d2a90bf03c1e 100644 --- a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/IndexController.java +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/IndexController.java @@ -3,17 +3,23 @@ package com.intellagric.agriecom.controller.agriecom_index; import com.intellagric.agriecom.module.agriecom_produce.ProduceService; import com.intellagric.agriecom.module.agriecom_produce_category.AgriecomProduceCategoryService; +import com.intellagric.common.jedis.JedisClient; import com.intellagric.common.pojo.LayuiDataGridResult; +import com.intellagric.common.utils.CookieUtils; +import com.intellagric.common.utils.JsonUtils; import com.intellagric.pojo.AgriecomProduce; import com.intellagric.pojo.AgriecomProduceCategory; import com.intellagric.pojo.CmsCategoryContent; +import com.intellagric.pojo.SysUser; import com.intellagric.service.module.cms_content.ContentCategoryService; import com.intellagric.service.module.cms_content.ContentService; import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.http.converter.json.MappingJacksonValue; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.ResponseBody; +import javax.servlet.http.HttpServletRequest; import java.io.UnsupportedEncodingException; import java.net.URLEncoder; import java.util.List; @@ -28,6 +34,9 @@ public class IndexController { private ProduceService produceService; @Autowired private ContentCategoryService contentCategoryService; + @Autowired + private JedisClient jedisClient; + @RequestMapping("/index/getMenu") @@ -67,5 +76,14 @@ public class IndexController { public AgriecomProduceCategory getAncestorNode(String categoryId,int level ){ return CategoryService.getAncestorNode(categoryId,level); } + @RequestMapping("/index/getUser") + @ResponseBody + public SysUser getUser(HttpServletRequest request){ + String token= CookieUtils.getCookieValue( request,"token"); + if(jedisClient.get("SESSION:"+token)==null){ + return null; + } + return JsonUtils.jsonToPojo(jedisClient.get("SESSION:"+token), SysUser.class); + } } diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/SearchController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/SearchController.java index 10ed12ffeb4adbeb2565d5d6e40f932a30a65400..e1f4eb6705d4682bea466e740b9a19ef06be0786 100644 --- a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/SearchController.java +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_index/SearchController.java @@ -7,8 +7,10 @@ import com.intellagric.module.cms.ContentVo; import com.intellagric.pojo.AgriecomProduce; import com.intellagric.pojo.AgriecomProduceCategory; import com.intellagric.pojo.CmsCategoryContent; +import com.intellagric.pojo.SysOffice; import com.intellagric.service.module.cms_content.ContentService; import com.intellagric.service.search.agriecom.AgriecomProductSearch; +import com.intellagric.service.search.agriecom.pojo.AgriecomProductResult; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.stereotype.Controller; @@ -59,15 +61,14 @@ public class SearchController { @RequestMapping("/agriecomIndex/search/categoryAndKeyword") @ResponseBody public LayuiDataGridResult categoryAndKeyword(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "3")int limit, @RequestParam(defaultValue = "") String categoryId, @RequestParam(defaultValue = "") String keyword){ - try { keyword=new String(keyword.getBytes("ISO-8859-1"),"UTF-8"); } catch (UnsupportedEncodingException e) { e.printStackTrace(); } + LayuiDataGridResult result= productSearch.keywordSearch(page,limit,categoryId,keyword); - return productSearch.keywordSearch(page,limit,categoryId,keyword); - + return result; } @RequestMapping("/agriecomIndex/search/forward") public String searchForward(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "20")int limit, String categoryId, String keyword,RedirectAttributes attributes){ @@ -135,28 +136,30 @@ public class SearchController { return "redirect:/collection.html?categoryId="+categoryId; } + /** - * 第二页面跳转 + * 根据分类id重定向到参数页面 * @param page * @param limit * @param categoryId * @return */ - @RequestMapping("/agriecomIndex/search/secondForward") - public String secondForward(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "20")int limit,String categoryId){ - return "redirect:/collectionSecond.html?categoryId="+categoryId; + @RequestMapping("/agriecomIndex/search/paramForward") + public String paramForward(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "20")int limit,String categoryId){ + return "redirect:/collectionThird.html?categoryId="+categoryId; } /** - * 根据分类id重定向到参数页面 + * 第二页面 * @param page * @param limit * @param categoryId * @return */ - @RequestMapping("/agriecomIndex/search/paramForward") - public String paramForward(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "20")int limit,String categoryId){ - return "redirect:/collectionThird.html?categoryId="+categoryId; + @RequestMapping("/agriecomIndex/search/secondForward") + public String secondForward(@RequestParam(defaultValue = "1")int page, @RequestParam(defaultValue = "20")int limit,String categoryId){ + return "redirect:/collectionSecond.html?categoryId="+categoryId; } + //@RequestBody() String param ?categoryId=1&map=[select1:%20"凯特芒",%20select2:%20null,%20select3:%20null] , ,@RequestBody Map map @RequestMapping("/agriecomIndex/search/paramPageSearch") @ResponseBody diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_product/ProductController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_product/ProductController.java index 058e458e024bdc917933638f245138fb161f2775..531f7615728d8539547ee191e951ab43adc28b00 100644 --- a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_product/ProductController.java +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/agriecom_product/ProductController.java @@ -13,7 +13,7 @@ import org.springframework.web.bind.annotation.ResponseBody; import java.util.LinkedHashMap; import java.util.List; -import java.util.Map; + @Controller public class ProductController { diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendColumnController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendColumnController.java new file mode 100644 index 0000000000000000000000000000000000000000..9378997900244eb879cff251aaeb3944e0ea8ef1 --- /dev/null +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendColumnController.java @@ -0,0 +1,110 @@ +package com.intellagric.agriecom.controller.recommend.controller; + +import com.intellagric.agriecom.module.recommend.RecommendColumnServiceIN; +import com.intellagric.common.pojo.LayuiDataGridResult; +import com.intellagric.common.pojo.ResponseMessage; +import com.intellagric.pojo.RecommendColumn; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.Date; +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/10 + * @Description: 推荐栏位管理 + */ +@Controller +public class RecommendColumnController { + + @Autowired + private RecommendColumnServiceIN recommendColumnService; + + /** + * 添加荐栏位信息 + * @Param recommendColumn + * @return ResponseMessage + */ + @RequestMapping("/recommend/column/add") + @ResponseBody + public ResponseMessage add(RecommendColumn recommendColumn) { + recommendColumn.setCreatedDate(new Date()); + if (recommendColumnService.addRecommendColumn(recommendColumn) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + + /** + * 删除荐栏位信息 + * @Param id + * @return ResponseMessage + */ + @RequestMapping("/recommend/column/delete") + @ResponseBody + public ResponseMessage delete(int id) { + if (recommendColumnService.deleteRecommendColumn(id) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + /** + * 修改荐栏位信息 + * @Param recommendColumn + * @return ResponseMessage + */ + @RequestMapping("/recommend/column/edit") + @ResponseBody + public ResponseMessage edit(RecommendColumn recommendColumn) { + if (recommendColumnService.editRecommendColumn(recommendColumn) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + /** + * 查询荐栏位信息 + * @return RecommendColumn + */ + @RequestMapping("/recommend/column/{id}") + @ResponseBody + public RecommendColumn get(@PathVariable int id) { + return recommendColumnService.queryRecommendColumnById(id); + } + + + /** + * 查询荐栏位信息列表 + * @return LayuiDataGridResult + */ + @RequestMapping("/recommend/column/list") + @ResponseBody + public LayuiDataGridResult getList() { + List recommendColumnList = recommendColumnService.queryRecommendColumnList(); + return LayuiDataGridResult.success().add(recommendColumnList,recommendColumnList.size()); + } + + /** + * 分页查询荐栏位信息列表 + * @return LayuiDataGridResult + */ + @RequestMapping("/recommend/column/page") + @ResponseBody + public LayuiDataGridResult getPage() { + List recommendColumnList = recommendColumnService.queryRecommendColumnList(); + return LayuiDataGridResult.success().add(recommendColumnList,recommendColumnList.size()); + } + + + + +} diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendController.java new file mode 100644 index 0000000000000000000000000000000000000000..204506e9d0297da9b5069deb9c45a5fdaebf461b --- /dev/null +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendController.java @@ -0,0 +1,44 @@ +package com.intellagric.agriecom.controller.recommend.controller; + + +import com.intellagric.agriecom.module.recommend.RecommendServiceIN; +import com.intellagric.common.pojo.ResponseMessage; +import com.intellagric.pojo.AgriecomProduce; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/8 + * @Description: 商品推荐 + */ +@Controller +public class RecommendController { + + @Autowired + private RecommendServiceIN recommendService; + + /** + * 根据推荐栏位来进行商品的推荐 + * + * @param columnId 栏位id + * @param userId 用户id + * @return ResponseMessage + */ + @RequestMapping("/recommend") + @ResponseBody + public List recommendByCulumnId(int columnId, String userId) { + List recomendProductList = recommendService.recomend(columnId, userId); + return recomendProductList; +// return ResponseMessage.success().add("recomendProductList",recomendProductList); + } + + + + + +} diff --git a/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendTemplateController.java b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendTemplateController.java new file mode 100644 index 0000000000000000000000000000000000000000..d2dd073815458933097ae74d5f790b5212a07c41 --- /dev/null +++ b/intellagric-agriecom-web/src/main/java/com/intellagric/agriecom/controller/recommend/controller/RecommendTemplateController.java @@ -0,0 +1,121 @@ +package com.intellagric.agriecom.controller.recommend.controller; + +import com.intellagric.agriecom.module.recommend.RuleServiceIN; +import com.intellagric.common.pojo.LayuiDataGridResult; +import com.intellagric.common.pojo.ResponseMessage; +import com.intellagric.pojo.RecommendTemplate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Controller; +import org.springframework.web.bind.annotation.PathVariable; +import org.springframework.web.bind.annotation.RequestMapping; +import org.springframework.web.bind.annotation.ResponseBody; + +import java.util.Date; +import java.util.List; +import java.util.UUID; + +/** + * @Auther: zhy + * @Date: 2019/5/9 + * @Description: 推荐规则模板管理 + */ +@Controller +public class RecommendTemplateController { + + @Autowired + private RuleServiceIN recommendTemplateService; + + + /** + * 添加推荐规则模板 + * @Param recommendTemplate + * @return ResponseMessage + */ + @RequestMapping("/recommend/template/add") + @ResponseBody + public ResponseMessage add(RecommendTemplate recommendTemplate) { + recommendTemplate.setId(UUID.randomUUID().toString().replaceAll("-","")); + recommendTemplate.setCreatedDate(new Date()); + if (recommendTemplateService.addRecommendTemplate(recommendTemplate) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + + /** + * 删除推荐规则模板 + * @Param id + * @return ResponseMessage + */ + @RequestMapping("/recommend/template/delete") + @ResponseBody + public ResponseMessage delete(String id) { + if (recommendTemplateService.deleteRecommendTemplate(id) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + /** + * 修改推荐规则模板 + * @Param + * @return ResponseMessage + */ + @RequestMapping("/recommend/template/edit") + @ResponseBody + public ResponseMessage edit(RecommendTemplate recommendTemplate) { + if (recommendTemplateService.editRecommendTemplate(recommendTemplate) == 1) { + return ResponseMessage.success(); + } else { + return ResponseMessage.fail(); + } + } + + + /** + * 查询推荐规则模板 + * @return RecommendTemplate + */ + @RequestMapping("/recommend/template/{id}") + @ResponseBody + public RecommendTemplate get(@PathVariable String id) { + return recommendTemplateService.queryRecommendTemplateById(id); + } + + /** + * 根据推荐栏位查询推荐规则模板 + * @return RecommendTemplate + */ + @RequestMapping("/recommend/template/column/{id}") + @ResponseBody + public RecommendTemplate getByColumn(@PathVariable int id) { + return recommendTemplateService.getTemplateByColumnId(id); + } + + + /** + * 查询推荐规则模板列表 + * @return LayuiDataGridResult + */ + @RequestMapping("/recommend/template/list") + @ResponseBody + public LayuiDataGridResult getList() { + List recommendTemplateList = recommendTemplateService.queryRecommendTemplateList(); + return LayuiDataGridResult.success().add(recommendTemplateList,recommendTemplateList.size()); + } + + /** + * 分页查询推荐规则模板列表 + * @return LayuiDataGridResult + */ + @RequestMapping("/recommend/template/page") + @ResponseBody + public LayuiDataGridResult getPage() { + List recommendTemplateList = recommendTemplateService.queryRecommendTemplateList(); + return LayuiDataGridResult.success().add(recommendTemplateList,recommendTemplateList.size()); + } + +} diff --git a/intellagric-agriecom-web/src/main/resources/spring/applicationContext-redis.xml b/intellagric-agriecom-web/src/main/resources/spring/applicationContext-redis.xml new file mode 100644 index 0000000000000000000000000000000000000000..4e23f7404c2b4a94c67899f8f08faafcca3acdd7 --- /dev/null +++ b/intellagric-agriecom-web/src/main/resources/spring/applicationContext-redis.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/intellagric-agriecom-web/src/main/resources/spring/springmvc.xml b/intellagric-agriecom-web/src/main/resources/spring/springmvc.xml index 1f5f1912ba982940426d865f25f9b436932f0330..25a5dda8d7142efc7b5cee6a0d2859ba35f4a243 100644 --- a/intellagric-agriecom-web/src/main/resources/spring/springmvc.xml +++ b/intellagric-agriecom-web/src/main/resources/spring/springmvc.xml @@ -12,7 +12,9 @@ + + @@ -26,8 +28,10 @@ + + @@ -48,7 +52,7 @@ - + @@ -66,11 +70,18 @@ + + + + + + + \ No newline at end of file diff --git a/intellagric-agriecom-web/src/main/webapp/WEB-INF/web.xml b/intellagric-agriecom-web/src/main/webapp/WEB-INF/web.xml index f998d5d856fee9f34f45ae5f81fb90c41c4667e0..f57ec2249589593de3e3ea9a5cdc6d1f98385f87 100644 --- a/intellagric-agriecom-web/src/main/webapp/WEB-INF/web.xml +++ b/intellagric-agriecom-web/src/main/webapp/WEB-INF/web.xml @@ -35,7 +35,14 @@ CharacterEncodingFilter /* - + + + contextConfigLocation + classpath:spring/applicationContext-*.xml + + + org.springframework.web.context.ContextLoaderListener + intellagric-manager diff --git a/intellagric-agriecom-web/src/main/webapp/about-us.html b/intellagric-agriecom-web/src/main/webapp/about-us.html index fd821b003023e39ea514e306e5964c05c5d45a9f..26ce190a59a309f785682e8ce838454f91d9840c 100644 --- a/intellagric-agriecom-web/src/main/webapp/about-us.html +++ b/intellagric-agriecom-web/src/main/webapp/about-us.html @@ -382,7 +382,7 @@
- 您好!欢迎来到智慧农商网 + 您好!欢迎来到农产品溯源云服务平台
diff --git a/intellagric-agriecom-web/src/main/webapp/assets/css/home_market.style5.scss.css b/intellagric-agriecom-web/src/main/webapp/assets/css/home_market.style5.scss.css index 9e36d007807c1756aef6466b75a489a9d778a549..74a7e232318f61ef230e5dc39d8005b3d16095fa 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/css/home_market.style5.scss.css +++ b/intellagric-agriecom-web/src/main/webapp/assets/css/home_market.style5.scss.css @@ -1038,7 +1038,7 @@ body.template-index .shop-by-collections .sidebar-collections .sdcollections-con overflow: hidden } .grid-block-full .bh-btm .bh-right .brands-area ul.brands-elements li img { - -webkit-filter: grayscale(100%); + -webkit-: grayscale(100%); -moz-filter: grayscale(100%); filter: grayscale(100%); position: absolute; diff --git a/intellagric-agriecom-web/src/main/webapp/assets/images/crop.jpg b/intellagric-agriecom-web/src/main/webapp/assets/images/crop.jpg new file mode 100644 index 0000000000000000000000000000000000000000..485702618dde50844814a906f706127f847c8277 Binary files /dev/null and b/intellagric-agriecom-web/src/main/webapp/assets/images/crop.jpg differ diff --git a/intellagric-agriecom-web/src/main/webapp/assets/images/iconTemp.jpg b/intellagric-agriecom-web/src/main/webapp/assets/images/iconTemp.jpg new file mode 100644 index 0000000000000000000000000000000000000000..c4243e166c560c4efe6638db214eb4df129efd6b Binary files /dev/null and b/intellagric-agriecom-web/src/main/webapp/assets/images/iconTemp.jpg differ diff --git a/intellagric-agriecom-web/src/main/webapp/assets/images/tomato.jpg b/intellagric-agriecom-web/src/main/webapp/assets/images/tomato.jpg new file mode 100644 index 0000000000000000000000000000000000000000..f7a6af16d9d00916a1efed60a2b492ba52c6e0e6 Binary files /dev/null and b/intellagric-agriecom-web/src/main/webapp/assets/images/tomato.jpg differ diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/collectionSecond.js b/intellagric-agriecom-web/src/main/webapp/assets/js/collectionSecond.js index 201f0c43e324988a656a5c74eb4a6700b8542859..d1e06aed8dfe97ec4799c22725503ebef53a5919 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/collectionSecond.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/collectionSecond.js @@ -280,6 +280,7 @@ $(window).ready(function() { } return theRequest; } + /*-------------------------------------------------------------*/ //获取全局数据 $.getUrlParam = function (name) { @@ -323,6 +324,7 @@ $(window).ready(function() { window.location="/agriecomIndex/search/forward?categoryId="+categoryId+"&keyword="+keyword; }); + let countPage=data.count%length==0?data.count/length:parseInt(data.count/length)+1; $(".page-sum strong").html(countPage); $(".page-go input").focusout(function(){ @@ -356,20 +358,18 @@ $(window).ready(function() { $(imgDiv.children[0]).attr("href",ele.produceId); $(imgDiv.children[0].children[0]).attr("src",ele.produceImg); var num=i+1; + //star $($(".grid-uniform-category>div:nth-child("+num+")>div>div")[1]).remove(); $($(".grid-uniform-category>div:nth-child("+num+")>div>div")[0]).after(`
- - - - - +
`); + //产品名 $($(".grid-uniform-category>div:nth-child("+num+")>div>p")[0]).html(""); $($(".grid-uniform-category>div:nth-child("+num+")>div>p")[0]).html(""+ele.produceName+""); @@ -384,13 +384,16 @@ $(window).ready(function() { $($(".list-mode-description")[i]).html(""); $($(".list-mode-description")[i]).html(ele.produceBrief); //联系商家 + $($(".add-to-cart-form form div")[i]).html(""); $($(".add-to-cart-form form div")[i]).html('\n' + ' 联系商家\n' + ' '); + //拼接 var childDiv=$(".grid-uniform-category>div:first-child").clone(false,true); parentDiv.append(childDiv); + starChange('span#spr_badge_3008529987',ele.remarks,i); }) $(".grid-uniform-category>div:last-child").empty(); } @@ -399,4 +402,10 @@ $(window).ready(function() { ajaxFun(categoryId,keyword,page,length); -}) \ No newline at end of file +}) +let starChange = (str,n=2,index=0)=>{ + let temp = ``; + for(let i=0;idl>dt').eq(i).text() $('li.select-list>dl').eq(i).attr("id") ); } let page=1; - let length=2; + let length=8; //page对象 let pageObj=$(".pages").clone(false,true); //child对象 防止查找无数据时把元素全部移除导致返回其它查询时无法显示数据 @@ -248,6 +248,7 @@ $(window).ready(function() { // data: JSON.stringify(AjaxList["ArrayList"]), data:jsonStr, success: function (data) { + console.log(data) if(data.count==0){ $(".grid-uniform").html("

暂无数据

"); $(".pages").remove(); @@ -295,6 +296,8 @@ $(window).ready(function() { return false; } + + } let parentDiv=$(".grid-uniform-category"); //点一次就清空 @@ -313,11 +316,7 @@ $(window).ready(function() { $($(".grid-uniform-category>div:nth-child("+num+")>div>div")[0]).after(`
- - - - - + @@ -344,6 +343,7 @@ $(window).ready(function() { //拼接 var childDiv=$(".grid-uniform-category>div:first-child").clone(false,true); parentDiv.append(childDiv); + starChange('span#spr_badge_3008529987',ele.remarks,i); }) $(".grid-uniform-category>div:last-child").empty(); } @@ -394,4 +394,10 @@ $(window).ready(function() { }) }) -}) \ No newline at end of file +}) +let starChange = (str,n=2,index=0)=>{ + let temp = ``; + for(let i=0;i
- + + + 1 review
`); $($(div.find("p")[1]).children("span")).html(ele.price+ele.unit); + starChange('span#spr_badge_3008529731',ele.remarks,i); }) }} ) @@ -41,4 +44,4 @@ $(document).ready(function() { }} ) -}) \ No newline at end of file +}) diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/index.js b/intellagric-agriecom-web/src/main/webapp/assets/js/index.js index 877ebd7e3c9426153730c78174c8a2bf53b824ea..de8471a61a5e9227a322b000c018c4332e2faa9a 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/index.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/index.js @@ -57,14 +57,14 @@ $(window).ready(function(){
    • -
    • +
    • 新产品
    • - + Example Book
      -
      + -
      + diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/ma.js b/intellagric-agriecom-web/src/main/webapp/assets/js/ma.js new file mode 100644 index 0000000000000000000000000000000000000000..b57415215bc8c00e65965cd111d0f0698e11cb91 --- /dev/null +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/ma.js @@ -0,0 +1,60 @@ +(function () { + var params = {}; + //Document 对象数据 + if(document) { + params.domain = document.domain || ''; + params.url = document.URL || ''; + params.title = decodeURIComponent(document.title) || ''; + params.referrer = document.referrer || ''; + } + //Window 对象数据 + if(window && window.screen) { + var sh = window.screen.height || 0; + var sw = window.screen.width || 0; + params.sr = sh + '×' + sw; + params.cd = window.screen.colorDepth || 0; + } + //navigator 对象数据 + if(navigator) { + var browserInfo = getBrowserInfo(); + var browserType = browserInfo.browser || ''; + var browserVersion = browserInfo.ver || ''; + params.browser = browserType + browserVersion || ''; + params.lang = navigator.language || ''; + params.platform = navigator.platform || ''; + } + //解析_maq 配置 + if(_maq) { + for(var i in _maq) { + switch(_maq[i][0]) { + case '_setAccount': + params.account = _maq[i][1]; + break; + default: + break; + } + } + } + //拼接参数串 + var args = ''; + for(var i in params) { + if(args != '') { + args += '&'; + } + args += i + '=' + encodeURIComponent(params[i]); + } + //通过 Image 对象请求后端脚本 + var img = new Image(1, 1); + console.log(args) + img.src = 'http://hadoop/log.gif?' + args; + + function getBrowserInfo(){ + var Sys = {}; + var ua = navigator.userAgent.toLowerCase(); + var re =/(msie|firefox|chrome|opera|version).*?([\d.]+)/; + var m = ua.match(re); + Sys.browser = m[1].replace(/version/, "'safari"); + Sys.ver = m[2]; + return Sys; + } +})(); \ No newline at end of file diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/newInsert.js b/intellagric-agriecom-web/src/main/webapp/assets/js/newInsert.js index ae947722e9ebeaf0e3f72fd609a54bc698b40d31..af1e8f3881864662f168c602ccca6a00c361ec4c 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/newInsert.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/newInsert.js @@ -9,6 +9,7 @@ // //
    • // `; + let newListPurchaseChildren = `
    • 2019-01-14 @@ -64,6 +65,7 @@ //
  • //
    // `; + /*---------------------------------------------------------------------------*/ /*-----------------------函数封装-------------------------------------------*/ /* @@ -76,20 +78,25 @@ }; /*---------------------------------------------------------------------------*/ //动态添加结点 + // circulateFn(7,'.new-apply-top-ListMain-content',newListApplyChildren); + circulateFn(7,'.new-purchase-top-ListMain-content',newListPurchaseChildren); circulateFn(7,'.new-info-contentMainList',newListInfoChildren); /*---------------------------------------------------------------------------*/ /*动态生成productList 添加类名*/ //class类名就是一定要添加 iconfont icon-... 图标就是first_icon second_icon third_icon 文本就是first_text + //------------------------------------------------------------- // circulateFn(3,'.productListContent_secondList',newProductListChildren); + /*动态添加类名*/ let trendApplyClass = ()=>{ $('.productListContent_secondList').children('li.one-third').each((index,ele)=>{ $(ele).children('a').each((ind,el)=>{ $(el).children('div').each((i,e)=>{ if(i == 0){ + $(e).eq(0).addClass('iconfont icon-lizi second_icon'); $(e).parents('a').children('div:even').addClass('iconfont icon-lizi second_icon'); }else{ @@ -101,11 +108,13 @@ }; trendApplyClass(); /*动态添加三角形以及下面的效果框*/ + // let trendApplyDiv = (ele)=>{ // $(ele).after(newProLineAndContent); // // circulateFn(6,'.contentHot-List',newListContentHotChildren); // }; // trendApplyDiv('.productListContent_first'); + /*---------------------------------------------------------------------------*/ /* 鼠标移入变色 @@ -165,6 +174,7 @@ turnColorFn('.new-purchase-top-ListMain-content','a'); turnColorFn('.new-info-contentMainList','a'); /*--------------------------------------------------------------------------------*/ + // /*三角形移动*/ // let [LeftDistance,clickLeftDistance,tempLeft]= [$('.first_text').width()/2,null,null]; // $('.productList-triangle').css({'left':LeftDistance.left}); @@ -217,8 +227,6 @@ // productListCon_effect('.productListContent'); /*--------------------------------------------------------------------------------*/ - - }); })(); diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/product.js b/intellagric-agriecom-web/src/main/webapp/assets/js/product.js index f9a9965be5c2d9ff9f55667d7fe8fb9f206bdafb..e5535f28fdd9d5b9ca1b90bbbbd8157c1a4d06bc 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/product.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/product.js @@ -28,7 +28,7 @@ $(window).ready(function(){ var request = GetRequest(); - + var sourceCode=""; var merchantId=""; var categoryId=""; var produceId=""; @@ -38,12 +38,13 @@ $(window).ready(function(){ type: 'get', async: false, success: function (data) { + sourceCode=data.sourceCode; categoryId=data.categoryId; merchantId=data.merchantId; produceId=data.produceId; //图片展示 //将图片链接处理一下 - var imgs= data.produceImg.substr(0, data.produceImg.length-1).split(","); + //var imgs= data.produceImg.substr(0, data.produceImg.length-1).split(","); $("#ProductPhotoImg").attr("src",imgs[0]); $('div.bigImg_child').css({"background-image":"url("+imgs[0]+")"}); @@ -182,7 +183,8 @@ $(window).ready(function(){ //事件绑定 $('#resFindBtn').on('click',()=>{ - window.location.href = "/resource.html"; + // 点击后获取产品的溯源码 + window.open("http://localhost:8084/traceability/trace-result?traceNumber="+sourceCode) }); diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/resource.js b/intellagric-agriecom-web/src/main/webapp/assets/js/resource.js index 86b3845215d7393ac99154ba8395beb1fcaeaa34..592ecc4f55fa723018b5426a139f2a6434728dc2 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/resource.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/resource.js @@ -42,7 +42,7 @@ $(document).ready(function() { - }); + }) diff --git a/intellagric-agriecom-web/src/main/webapp/assets/js/search.js b/intellagric-agriecom-web/src/main/webapp/assets/js/search.js index b7195bce3968276be696b055b8eba9ce19392db9..eff2967fbb1ff16d44cf2e88b000ed3f4696c6ea 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/js/search.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/js/search.js @@ -4,11 +4,6 @@ $(document).ready(function() { alert("hellworl"); });*/ - - - - - $.getUrlParam = function (name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); @@ -18,7 +13,7 @@ $(document).ready(function() { let categoryId = $.getUrlParam('categoryId'); let keyword=$.getUrlParam('keyword'); - let length =3; //每页显示条数 + let length =8; //每页显示条数 let page=1; //默认第一页 @@ -80,6 +75,9 @@ $(document).ready(function() { } var parentDiv=$(".grid-uniform-category"); + + + $.each(data.data,function(i,ele){ //回显 var imgDiv=$(".product-image")[i]; @@ -91,15 +89,13 @@ $(document).ready(function() { $($(".grid-uniform-category>div:nth-child("+num+")>div>div")[0]).after(`
    - - - - - +
    `); + + //产品名 $($(".grid-uniform-category>div:nth-child("+num+")>div>p")[0]).html(""); $($(".grid-uniform-category>div:nth-child("+num+")>div>p")[0]).html("
    "+ele.produceName+""); @@ -125,7 +121,20 @@ $(document).ready(function() { //拼接 var childDiv=$(".grid-uniform-category>div:first-child").clone(false,true); parentDiv.append(childDiv); + if (ele.remarks=="null"){ + starChange('span#spr_badge_3008529987',2,i); + } else + starChange('span#spr_badge_3008529987',ele.remarks,i); }) + + //星星变化 + //最后一个是索引值 + //starChange('span#spr_badge_3008529987',4,0); + + + + + $(".grid-uniform-category>div:last-child").empty(); } }); @@ -149,15 +158,24 @@ $(document).ready(function() { $(div.find("a")[1]).html(ele.produceName); $(div.find("a")[1]).append(`

    - + + + 1 review
    `); $($(div.find("p")[1]).children("span")).html(ele.price+ele.unit); + if (ele.remarks=="null"){ + starChange('span#spr_badge_3008529731',2,i); + }else + starChange('span#spr_badge_3008529731',ele.remarks,i); }) - }} - ) + //最后一个参数写i + // starChange('span#spr_badge_3008529731',4,0); + } + + }) //广告 $.ajax({ url: "/agriecomIndex/search/ad", @@ -169,4 +187,18 @@ $(document).ready(function() { }} ) -}) \ No newline at end of file +}) + +/* +* n=2是星星个数的默认值 然后str 传的是 i标签父级的父级span的id span#spr_badge_3008529987 +* index是span#spr_badge_.......元素的索引值 +* */ + +let starChange = (str,n=2,index=0)=>{ + let temp = ``; + for(let i=0;i登录") + } + } + }) +}) \ No newline at end of file diff --git a/intellagric-agriecom-web/src/main/webapp/assets/new/css/productList.css b/intellagric-agriecom-web/src/main/webapp/assets/new/css/productList.css index 53949a7da41f4870bf4fa952f8b07eae57aaa133..f19225778f2c28128ce7c8eebf08c57e3c4d9cad 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/new/css/productList.css +++ b/intellagric-agriecom-web/src/main/webapp/assets/new/css/productList.css @@ -105,7 +105,19 @@ } .pages .searchPage { margin-left: 20px !important; +<<<<<<< HEAD +<<<<<<< HEAD +<<<<<<< HEAD margin-top: -22px !important; +======= + margin-top: -22!px !important; +>>>>>>> e56d4fde7fb05aad3d72b34f06dfab9c09b1d9b6 +======= + margin-top: -22px !important; +>>>>>>> 9775937ee6a762cf0279a06e770d03c26fbe1797 +======= + margin-top: -22px !important; +>>>>>>> 7becee1c494f66ac7c05c3fde0cf832425caf3ca } .pages #Pagination .pagination .prev, .pages #Pagination .pagination .next { diff --git a/intellagric-agriecom-web/src/main/webapp/assets/new/js/productList.js b/intellagric-agriecom-web/src/main/webapp/assets/new/js/productList.js index b4b1af2150913acc13d4237a2db0d01a67c42dca..719286cd753c9ed78bde0363cc35d7620e84ddcc 100644 --- a/intellagric-agriecom-web/src/main/webapp/assets/new/js/productList.js +++ b/intellagric-agriecom-web/src/main/webapp/assets/new/js/productList.js @@ -14,15 +14,19 @@ $(window).ready(function() { type: 'get', async: false, success: function (data) { + data=data.data; var z = 0;//用来转化成数字的中介 // 导航栏Collections的下拉导航 + var collectionNav_li = ""; //搜索框左边的分类 var collectionOpt = ""; for (var d in data) { + collectionNav_li += '
  • ' + data[d].name + '
  • '; + collectionOpt += ''; } $("#collectionNav").append(collectionNav_li); @@ -115,6 +119,7 @@ $(window).ready(function() { //转换的块添加子类 var childs = data[d].children; + z = 0; for (var t in childs) { z = parseInt(t) + 1; @@ -124,7 +129,9 @@ $(window).ready(function() { `; var grandsons = childs[t].children; for (var x in grandsons) { + collectionQue_div += `
    ` + grandsons[x].name + `
    `; + } collectionQue_div += ` `; @@ -139,6 +146,7 @@ $(window).ready(function() { } $("ul#myTab").append(collectionQue_li); + $("div#myTabContent").append( "" + collectionQue_div); //-------------------------------- @@ -272,4 +280,6 @@ $(window).ready(function() { -}) \ No newline at end of file + +}) + diff --git a/intellagric-agriecom-web/src/main/webapp/collection.html b/intellagric-agriecom-web/src/main/webapp/collection.html index dfaa3eb8fbdc3caec56acd47a3e8f8e05ea1256c..46950a5b934bd8e2e02539282595973e3457825a 100644 --- a/intellagric-agriecom-web/src/main/webapp/collection.html +++ b/intellagric-agriecom-web/src/main/webapp/collection.html @@ -48,7 +48,7 @@ - + @@ -376,8 +376,8 @@
    -
    - 您好!欢迎来到智慧农商网 +
    + 您好!欢迎来到农产品溯源云服务平台
    @@ -412,12 +412,13 @@ +

    @@ -724,7 +727,9 @@

    +
      +

    @@ -737,6 +742,7 @@

    最新资讯
    +
    • diff --git a/intellagric-agriecom-web/src/main/webapp/news.html b/intellagric-agriecom-web/src/main/webapp/news.html index 116dd0a72d1e3e5b8cc217c26c8280de68082c7c..5651920db15c9dc8d5ee30c82ee097f3e3d3ffdc 100644 --- a/intellagric-agriecom-web/src/main/webapp/news.html +++ b/intellagric-agriecom-web/src/main/webapp/news.html @@ -1,4 +1,4 @@ - + @@ -40,6 +40,7 @@ + @@ -364,8 +365,8 @@
      -
      - 您好!欢迎来到智慧农商网 +
      + 您好!欢迎来到农产品溯源云服务平台
      @@ -399,12 +400,13 @@
    • - + 真源码 @@ -747,6 +749,7 @@
    +
  • @@ -759,6 +762,7 @@
  • +
    diff --git a/intellagric-agriecom-web/src/main/webapp/product.html b/intellagric-agriecom-web/src/main/webapp/product.html index ba1e08a0cad33e65eaeca179cfd1ced6e2edc16a..ddd1fd9d09cd6253dc07baa47a32c8d421119139 100644 --- a/intellagric-agriecom-web/src/main/webapp/product.html +++ b/intellagric-agriecom-web/src/main/webapp/product.html @@ -18,6 +18,7 @@ + @@ -39,6 +40,7 @@ + @@ -125,6 +127,7 @@
    • - + 真源码 diff --git a/intellagric-agriecom-web/src/main/webapp/search.html b/intellagric-agriecom-web/src/main/webapp/search.html index c8e8dcb8ddbacb3a52ee0db394a47ed80d9b84ef..a92687f36ed6308fc2fdf067f848a1436abd2cfe 100644 --- a/intellagric-agriecom-web/src/main/webapp/search.html +++ b/intellagric-agriecom-web/src/main/webapp/search.html @@ -49,6 +49,7 @@ + @@ -373,8 +374,8 @@
      -
      - 您好!欢迎来到智慧农商网 +
      + 您好!欢迎来到农产品溯源云服务平台
      @@ -408,12 +409,13 @@
    • - + 真源码 diff --git a/intellagric-agriecom-web/src/test/GrabData/GrabDataDemo.java b/intellagric-agriecom-web/src/test/GrabData/GrabDataDemo.java new file mode 100644 index 0000000000000000000000000000000000000000..c2cd0e0ef2a8c1c3032a9acf1fd843591eae1033 --- /dev/null +++ b/intellagric-agriecom-web/src/test/GrabData/GrabDataDemo.java @@ -0,0 +1,182 @@ +package GrabData; + +import com.intellagric.agriecom.module.agriecom_produce.ProduceService; +import com.intellagric.common.utils.UUIDUtils; +import com.intellagric.pojo.AgriecomProduce; +import org.apache.http.HttpEntity; +import org.apache.http.client.ClientProtocolException; +import org.apache.http.client.methods.CloseableHttpResponse; +import org.apache.http.client.methods.HttpGet; +import org.apache.http.impl.client.CloseableHttpClient; +import org.apache.http.impl.client.HttpClients; +import org.apache.http.util.EntityUtils; +import org.jsoup.Jsoup; +import org.jsoup.nodes.Document; +import org.jsoup.nodes.Element; +import org.jsoup.select.Elements; +import org.springframework.beans.factory.annotation.Autowired; + + +import java.io.IOException; +import java.util.Date; + + +public class GrabDataDemo { + @Autowired + static ProduceService produceService; //为空。。。。。。。。。。。。。 + + //方法入口 + public static void main(String[] args) { + for(int i =1;i<2;i++) { + //获取url https://www.cnhnb.com/p/putao-0-0-0-0-2/ + String url = "http://www.cnhnb.com/p/ganju-0-0-0-0-"+i+"/"; + //爬取网页信息 + String html = pickData(url); + //获取html中的内容 + Document document = Jsoup.parse(html); + //获取html class 为product-content-ul 的节点 + Elements divs = document.getElementsByClass("product-bg"); + + + for(Element e :divs){ + AgriecomProduce p=new AgriecomProduce(); + + p.setProduceId(UUIDUtils.getID()); + //categoryId分类 + p.setCategoryId("41"); + + //显示一张图片 + Elements imgEle= e.select("img.s-image"); + String img=imgEle.get(0).attr("src")+","; + p.setProduceImg(img); + + e=e.selectFirst("#fruit-text"); + //产品名称 + Element nameEle= e.selectFirst("span.fruit-explain"); + String name=nameEle.text(); + p.setProduceName(name); + + //单位 + Elements unitEle= e.select("li span.Jin"); + String unit=unitEle.get(0).text(); + p.setUnit(unit); + //价格 + Elements priceEle= e.select("li span.fruit-price"); + String price=priceEle.get(0).text(); + p.setPrice(Float.parseFloat(price)); + //producingArea产地 + Elements placeEle= e.select("li span.place"); + String producingArea=placeEle.get(1).text(); + p.setProducingArea(producingArea); + //商家名称 + + + //进去产品详情页面,再抓取数据 + + //商品编号 + Elements proIdEle= e.select("a.seller"); + String proId=proIdEle.get(0).attr("href"); + String urlPro = "http://www.cnhnb.com"+proId; + //爬取网页信息 + String htmlPro = pickData(urlPro); + //获取html中的内容 + Document documentPro = Jsoup.parse(htmlPro); + + + //图片区 + Elements imgUl = documentPro.getElementsByClass("ul.clearfix"); + //图片完善 + Elements imgEles= imgUl.select("img.s-image"); + for(int j=1;j1) + params=params.substring(0,params.length()-2);//切掉最后的; + p.setProduceParameter(params); + System.out.println(p.toString()); +// produceService.insertProduce(p); + + } + + + + + + } + + + + + } + + /* + * 爬取网页信息 + */ + private static String pickData(String url) { + CloseableHttpClient httpclient = HttpClients.createDefault(); + try { + HttpGet httpget = new HttpGet(url); + CloseableHttpResponse response = httpclient.execute(httpget); + try { + // 获取响应实体 + HttpEntity entity = response.getEntity(); + // 打印响应状态 + if (entity != null) { + return EntityUtils.toString(entity); + } + } finally { + response.close(); + } + } catch (ClientProtocolException e) { + e.printStackTrace(); + } catch (IOException e) { + e.printStackTrace(); + } finally { + // 关闭连接,释放资源 + try { + httpclient.close(); + } catch (IOException e) { + e.printStackTrace(); + } + } + return null; + } + + + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/agriecom_news/NewsService.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/agriecom_news/NewsService.java index f251bfcb32f92f3b371dd600130ccfe83c81a7d1..b13653ee2b0345105dee68828b94984c1ae7fa20 100644 --- a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/agriecom_news/NewsService.java +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/agriecom_news/NewsService.java @@ -27,6 +27,7 @@ public interface NewsService { List getLatestNews(int page,int limit); + LayuiDataGridResult getNewsListByKeyword(int page,int limit,String keyword); } diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/ProductRecommendServiceIN.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/ProductRecommendServiceIN.java new file mode 100644 index 0000000000000000000000000000000000000000..29e2360217179f2b439063aa29d89a841ba3a7f1 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/ProductRecommendServiceIN.java @@ -0,0 +1,24 @@ +package com.intellagric.agriecom.module.recommend; + + +import com.intellagric.pojo.AgriecomProduce; +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/9 + * @Description: 用户推荐模块的商品信息服务 + */ + +public interface ProductRecommendServiceIN { + + + /** + * 查询包含productIdList集合的商品信息 + * + * @param productIdList 商品id列表 + * @return List + */ + List baseInfo(List productIdList); + +} diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendColumnServiceIN.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendColumnServiceIN.java new file mode 100644 index 0000000000000000000000000000000000000000..682bb397e292b3ebc333ab98254243ffee6a04b6 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendColumnServiceIN.java @@ -0,0 +1,60 @@ +package com.intellagric.agriecom.module.recommend; + + +import com.intellagric.pojo.RecommendColumn; + + +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/10 + * @Description: 推荐栏位信息管理 + */ + +public interface RecommendColumnServiceIN { + + + + + /** + * 添加推荐栏位信息 + * @param recommendColumn + * @return int + */ + int addRecommendColumn(RecommendColumn recommendColumn) ; + + /** + * 删除推荐栏位信息 + * @param id + * @return int + */ + int deleteRecommendColumn(int id); + + /** + * 修改推荐栏位信息 + * @param + * @return int + */ + int editRecommendColumn(RecommendColumn recommendColumn) ; + + /** + * 通过id查询推荐栏位 + * @param id + * @return RecommendColumn + */ + RecommendColumn queryRecommendColumnById(int id); + /** + * 查询所有推荐栏位信息 + * @return List + */ + List queryRecommendColumnList() ; + + /** + * 分页查询所有推荐栏位记录 + * @return List + */ + List queryRecommendColumnPage(int page,int rows); + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendModelServiceIN.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendModelServiceIN.java new file mode 100644 index 0000000000000000000000000000000000000000..9fa94d4cb46ff0143aede0162ff1143c652a2585 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendModelServiceIN.java @@ -0,0 +1,49 @@ +package com.intellagric.agriecom.module.recommend; + +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/9 + * @Description: 推荐模型服务 + */ + +public interface RecommendModelServiceIN { + + + + + /** + * 查询基于用户的协同过滤产生的推荐结果: + * 一个人的推荐结果存放在Hash数据结构中(redis) + * field等于模型的标志 + * value等于模型给该用户推荐的结果 + * + * @param userId 用户id + * @param needNum 推荐商品数量 + * @return List + */ + List recommendByUserCF(String userId, int needNum); + /** + * 查询基于物品的协同过滤产生的推荐结果: + * + * @param userId 用户id + * @param needNum 推荐商品数量 + * @return List + */ + List recommendByItemCF(String userId, int needNum); + + /** + * 查询默认的推荐结果 + * + * @param adId 栏目id + * @return List + */ + List defaultRecommend(int adId) ; + + + + + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendServiceIN.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendServiceIN.java new file mode 100644 index 0000000000000000000000000000000000000000..f0a2dd94c36a7b0b27a3066b6025bd3334169436 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RecommendServiceIN.java @@ -0,0 +1,33 @@ +package com.intellagric.agriecom.module.recommend; + +import com.intellagric.pojo.AgriecomProduce; + +import org.springframework.stereotype.Service; + + +import java.util.List; + + +/** + * @Auther: zhy + * @Date: 2019/5/8 + * @Description: 推荐服务 + */ +@Service +public interface RecommendServiceIN { + + + + + /** + * 根据推荐栏位的ID查询推荐结果,并根据推荐规则进行整合排序 + * + * @param columnId 栏位id + * @param userId 用户id + * @return List + */ + List recomend(int columnId, String userId); + + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RuleServiceIN.java b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RuleServiceIN.java new file mode 100644 index 0000000000000000000000000000000000000000..a0e11c60141ff055eb5993c2d25a5d959a48d4eb --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-interface/src/main/java/com/intellagric/agriecom/module/recommend/RuleServiceIN.java @@ -0,0 +1,68 @@ +package com.intellagric.agriecom.module.recommend; + + +import com.intellagric.pojo.RecommendTemplate; + +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/8 + * @Description: 推荐规则管理服务 + */ + +public interface RuleServiceIN { + + + + /** + * 根据栏位ID查询是够对应的推荐模板 + * + * @param columnId + * @return Template + */ + RecommendTemplate getTemplateByColumnId(int columnId) ; + + + /** + * 添加推荐规则模板信息 + * @param recommendTemplate + * @return int + */ + int addRecommendTemplate(RecommendTemplate recommendTemplate) ; + + /** + * 删除推荐规则模板信息 + * @param id + * @return int + */ + int deleteRecommendTemplate(String id); + + /** + * 修改推荐规则模板信息 + * @param + * @return int + */ + int editRecommendTemplate(RecommendTemplate recommendTemplate) ; + + /** + * 通过id查询推荐规则模板 + * @param id + * @return RecommendTemplate + */ + RecommendTemplate queryRecommendTemplateById(String id) ; + + /** + * 查询所有推荐规则模板信息 + * @return List + */ + List queryRecommendTemplateList() ; + + /** + * 分页查询所有推荐规则模板记录 + * @return List + */ + List queryRecommendTemplatePage(int page, int rows) ; + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/pom.xml b/intellagric-agriecom/intellagric-agriecom-service/pom.xml index 0fbf4fa1bd51326b7f241c0a7185ce621de9e303..7cae6774abdf869e80e1b12932da9303581a587e 100644 --- a/intellagric-agriecom/intellagric-agriecom-service/pom.xml +++ b/intellagric-agriecom/intellagric-agriecom-service/pom.xml @@ -80,6 +80,13 @@ junit test + + javax.servlet + servlet-api + provided + + + \ No newline at end of file diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_news/NewsServiceImpl.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_news/NewsServiceImpl.java index 2a8bc23b970e9dc51d99065d7e3e2c01623595db..a82be4e5c3578ea7f19e382123c47a9ddeee1658 100644 --- a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_news/NewsServiceImpl.java +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_news/NewsServiceImpl.java @@ -9,11 +9,13 @@ import com.intellagric.common.pojo.LayuiDataGridResult; import com.intellagric.common.pojo.ResponseMessage; import com.intellagric.mapper.AgriecomNewsMapper; import com.intellagric.mapper.AgriecomNewsTypeMapper; + import com.intellagric.module.agriecom.agriecom_news.NewsVo; import com.intellagric.pojo.AgriecomNews; import com.intellagric.pojo.AgriecomNewsExample; import com.intellagric.pojo.AgriecomNewsType; + import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -192,6 +194,7 @@ public class NewsServiceImpl implements NewsService { } + @Override public LayuiDataGridResult getNewsListByKeyword(int page, int rows, String keyword) { PageHelper.startPage(page, rows); @@ -206,4 +209,5 @@ public class NewsServiceImpl implements NewsService { } + } diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce/ProduceServiceImpl.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce/ProduceServiceImpl.java index 427cfe4d26ae9cf761b823defd42380d2d3aae69..ae751b3e84686a080efa069b26f88870c8a76ea8 100644 --- a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce/ProduceServiceImpl.java +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce/ProduceServiceImpl.java @@ -16,8 +16,12 @@ import com.intellagric.pojo.*; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; + + + import java.util.*; + /** * @Autuor cky * @Date 2018/11/10 15:23 @@ -146,6 +150,7 @@ public class ProduceServiceImpl implements ProduceService { //按价格排序 if(order!=null&&!order.equals("")) example.setOrderByClause(order); + List proList=dao.selectByExampleWithBLOBs(example); PageInfo pageInfo = new PageInfo<>(proList); List resultList=new ArrayList<>(); @@ -163,20 +168,7 @@ public class ProduceServiceImpl implements ProduceService { return lay; } -// /** -// * 按价格排序获取全部 -// * @param order -// * @return -// */ -// @Override -// public List getAll(String order) { -// AgriecomProduceExample example=new AgriecomProduceExample(); -// example.createCriteria().andProduceIdIsNotNull(); -// if(order!=null&!order.equals("")) -// example.setOrderByClause("update_date "+order); -// List list=dao.selectByExample(example); -// return list; -// } + /** * 根据分类id查询农产品 @@ -244,6 +236,7 @@ public class ProduceServiceImpl implements ProduceService { } + @Override public List getHotList(int page,int limit){ AgriecomProduceExample example=new AgriecomProduceExample(); @@ -294,19 +287,22 @@ public class ProduceServiceImpl implements ProduceService { LinkedHashMap map=new LinkedHashMap<>(); AgriecomProduceCategory produceCategory; - produceCategory = cateDao.selectByPrimaryKey(categoryId); - map.put(produceCategory.getName(),produceCategory.getId()); - while(!produceCategory.getParentId().equals("0")) { - - produceCategory = cateDao.selectByPrimaryKey(produceCategory.getParentId()); - map.put(produceCategory.getName(),produceCategory.getId()); + if(categoryId!=null) { + produceCategory = cateDao.selectByPrimaryKey(categoryId); - } - map.put("所有分类","0"); + map.put(produceCategory.getName(), produceCategory.getId()); + while (!produceCategory.getParentId().equals("0")) { + produceCategory = cateDao.selectByPrimaryKey(produceCategory.getParentId()); + map.put(produceCategory.getName(), produceCategory.getId()); + } + map.put("所有分类", "0"); + } return map; } + + } diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce_category/AgriecomProduceCategoryServiceImpl.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce_category/AgriecomProduceCategoryServiceImpl.java index d5faa099ca24a432054892696d7e6e64f6611fe7..feac61ae986cce5fc970e984491bd89ad34d5338 100644 --- a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce_category/AgriecomProduceCategoryServiceImpl.java +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/agriecom_produce_category/AgriecomProduceCategoryServiceImpl.java @@ -31,7 +31,8 @@ public class AgriecomProduceCategoryServiceImpl implements AgriecomProduceCatego public ResponseMessage addProduceCategory(AgriecomProduceCategory produceCategory) { produceCategory.setCreateDate(new Date(System.currentTimeMillis())); - produceCategory.setLevel(this.getProduceCategoryById(produceCategory.getParentId()).getLevel()+1); + //当选择0分类时,getProduceCategoryById这个方法就那不到数据,getLevel()就会抛空指针 +// produceCategory.setLevel(this.getProduceCategoryById(produceCategory.getParentId()).getLevel()+1); produceCategory.setId(UUID.randomUUID().toString().replaceAll("-","")); if(produceCategoryMapper.insertSelective(produceCategory)==1) diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/cache/RedisHandler.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/cache/RedisHandler.java new file mode 100644 index 0000000000000000000000000000000000000000..77b2e55ab59a10bd1460f7cf4a3c1be1ea40bc7c --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/cache/RedisHandler.java @@ -0,0 +1,18 @@ +package com.intellagric.agriecom.service.recommend.cache; + + +import com.intellagric.agriecom.service.recommend.utils.MyShardedJedisPool; + +/** + * redis数据库连接池 + */ +public class RedisHandler { + + public static String getValueByHashField(String key, String field) { + return MyShardedJedisPool.getResource().hget(key, field); + } + + public static String getString(String key) { + return MyShardedJedisPool.getResource().get(key); + } +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/ProductRecommendService.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/ProductRecommendService.java new file mode 100644 index 0000000000000000000000000000000000000000..43c04dd2709e7eb74661de0645261ed6a47d0a2b --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/ProductRecommendService.java @@ -0,0 +1,43 @@ +package com.intellagric.agriecom.service.recommend.service; + + +import com.intellagric.agriecom.module.recommend.ProductRecommendServiceIN; +import com.intellagric.mapper.AgriecomProduceMapper; +import com.intellagric.pojo.AgriecomProduce; +import com.intellagric.pojo.AgriecomProduceExample; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/9 + * @Description: 用户推荐模块的商品信息服务 + */ +@Service +public class ProductRecommendService implements ProductRecommendServiceIN { + + @Autowired + private AgriecomProduceMapper productMapper; + + /** + * 查询包含productIdList集合的商品信息 + * + * @param productIdList 商品id列表 + * @return List + */ + public List baseInfo(List productIdList) { + if (productIdList != null && productIdList.size() > 0) { + AgriecomProduceExample productExample = new AgriecomProduceExample(); + productExample.createCriteria().andProduceIdIn(productIdList); + List products = productMapper.selectByExample(productExample); + return products; + } else { + return new ArrayList<>(); + } + + } + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendColumnService.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendColumnService.java new file mode 100644 index 0000000000000000000000000000000000000000..8ff86bc7d8ba083c50f512304361883dc5fc2667 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendColumnService.java @@ -0,0 +1,83 @@ +package com.intellagric.agriecom.service.recommend.service; + +import com.github.pagehelper.PageHelper; +import com.intellagric.agriecom.module.recommend.RecommendColumnServiceIN; +import com.intellagric.mapper.RecommendColumnMapper; +import com.intellagric.pojo.RecommendColumn; +import com.intellagric.pojo.RecommendColumnExample; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/10 + * @Description: 推荐栏位信息管理 + */ +@Service +public class RecommendColumnService implements RecommendColumnServiceIN { + + + @Autowired + private RecommendColumnMapper recommendColumnMapper; + + /** + * 添加推荐栏位信息 + * @param recommendColumn + * @return int + */ + public int addRecommendColumn(RecommendColumn recommendColumn) { + return recommendColumnMapper.insertSelective(recommendColumn); + } + + /** + * 删除推荐栏位信息 + * @param id + * @return int + */ + public int deleteRecommendColumn(int id) { + return recommendColumnMapper.deleteByPrimaryKey(id); + } + + /** + * 修改推荐栏位信息 + * @param + * @return int + */ + public int editRecommendColumn(RecommendColumn recommendColumn) { + return recommendColumnMapper.updateByPrimaryKeySelective(recommendColumn); + } + + /** + * 通过id查询推荐栏位 + * @param id + * @return RecommendColumn + */ + public RecommendColumn queryRecommendColumnById(int id) { + return recommendColumnMapper.selectByPrimaryKey(id); + } + + /** + * 查询所有推荐栏位信息 + * @return List + */ + public List queryRecommendColumnList() { + RecommendColumnExample RecommendColumnExample = new RecommendColumnExample(); + RecommendColumnExample.createCriteria().andIdIsNotNull(); + return recommendColumnMapper.selectByExample(RecommendColumnExample); + } + + /** + * 分页查询所有推荐栏位记录 + * @return List + */ + public List queryRecommendColumnPage(int page,int rows) { + PageHelper.startPage(page, rows); + RecommendColumnExample RecommendColumnExample = new RecommendColumnExample(); + RecommendColumnExample.createCriteria().andIdIsNotNull(); + return recommendColumnMapper.selectByExample(RecommendColumnExample); + } + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendModelService.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendModelService.java new file mode 100644 index 0000000000000000000000000000000000000000..32ba743710979dd81a8ceb314446a21918ad6242 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendModelService.java @@ -0,0 +1,116 @@ +package com.intellagric.agriecom.service.recommend.service; + + +import com.intellagric.agriecom.module.recommend.RecommendModelServiceIN; +import com.intellagric.agriecom.service.recommend.cache.RedisHandler; +import com.intellagric.mapper.RecommendTemplateMapper; +import com.intellagric.pojo.RecommendTemplate; +import com.intellagric.pojo.RecommendTemplateExample; +import org.apache.commons.lang3.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/9 + * @Description: 推荐模型服务 + */ +@Service +public class RecommendModelService implements RecommendModelServiceIN { + + @Autowired + private RecommendTemplateMapper recommendTemplateMapper; + + + /** + * 查询基于用户的协同过滤产生的推荐结果: + * 一个人的推荐结果存放在Hash数据结构中(redis) + * field等于模型的标志 + * value等于模型给该用户推荐的结果 + * + * @param userId 用户id + * @param needNum 推荐商品数量 + * @return List + */ + public List recommendByUserCF(String userId, int needNum) { + List list = getProductIdListByCache("recom:" + userId, "UserCF"); + //取出推荐其中规定的数量 + return list.size() > needNum ? list.subList(0, needNum) : list; + } + + /** + * 查询基于物品的协同过滤产生的推荐结果: + * + * @param userId 用户id + * @param needNum 推荐商品数量 + * @return List + */ + public List recommendByItemCF(String userId, int needNum) { + List list = getProductIdListByCache("recom:" + userId, "ItemCF"); + return list.size() > needNum ? list.subList(0, needNum) : list; + } + + /** + * 查询默认的推荐结果 + * + * @param adId 栏目id + * @return List + */ + public List defaultRecommend(int adId) { + RecommendTemplateExample recommendTemplateExample = new RecommendTemplateExample(); + recommendTemplateExample.createCriteria().andColumnIdEqualTo(adId); + List recommendTemplates = recommendTemplateMapper.selectByExample(recommendTemplateExample); + String defaultProducts; + List defaultProductIdList = new ArrayList<>(); + if (recommendTemplates.size() > 0 ) { + defaultProducts = recommendTemplates.get(0).getDefaultProducts(); + defaultProductIdList = getProductIdListByDefault(defaultProducts); + } + return defaultProductIdList; + } + + + /** + * 从Redis中获取推荐的商品信息,封装商品id列表 + * + * @param key + * @param field + * @return List + */ + private List getProductIdListByCache(String key, String field) { + List list = new ArrayList<>(); + String recommends = RedisHandler.getValueByHashField(key, field); + if (StringUtils.isNotBlank(recommends)) { + String[] items = recommends.split(","); + for (String item : items) { + if (item.contains(":")) { + list.add(item.substring(0, item.indexOf(":"))); + } else { + list.add(item); + } + } + } + return list; + } + + /** + * 从默认的推荐商品id串中获取商品id数组 + * + * @param defaultProductIds + * @return List + */ + private List getProductIdListByDefault(String defaultProductIds) { + List list = new ArrayList<>(); + if (StringUtils.isNotBlank(defaultProductIds)) { + String[] productIds = defaultProductIds.split(","); + for (String item : productIds) { + list.add(item); + } + } + return list; + } + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendService.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendService.java new file mode 100644 index 0000000000000000000000000000000000000000..66321a77fd32261ee5641de1b39726ad068e9312 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RecommendService.java @@ -0,0 +1,160 @@ +package com.intellagric.agriecom.service.recommend.service; + +import com.intellagric.agriecom.module.recommend.RecommendServiceIN; +import com.intellagric.pojo.AgriecomProduce; + +import com.intellagric.pojo.RecommendTemplate; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; +import java.util.Map; + +/** + * @Auther: zhy + * @Date: 2019/5/8 + * @Description: 推荐服务 + */ +@Service +public class RecommendService implements RecommendServiceIN { + + @Autowired + private RuleService ruleService; + + @Autowired + private RecommendModelService recommendModelService; + + @Autowired + private ProductRecommendService productService; + + + /** + * 根据推荐栏位的ID查询推荐结果,并根据推荐规则进行整合排序 + * + * @param columnId 栏位id + * @param userId 用户id + * @return List + */ + public List recomend(int columnId, String userId) { + List recommendResult = new ArrayList<>(); + //判断当前广告位是否有对应的推荐模型,如果没有推荐推荐模型就返回NULL + RecommendTemplate template = ruleService.getTemplateByColumnId(columnId); + if (template == null) { + return recommendResult; + } + //根据广告位使用推荐模型计算的结果,每个广告位都有独立的一个或者多个模型进行支撑 + recommendResult = getRecommendResult(columnId, template.getNum(), userId); + //对硬推商品进行设置 + /*setSaleAd(template.getDefaultProducts(), recommendResult);*/ + return recommendResult; + } + + + /** + * 每个广告位都有独立的推荐模型支撑,模型是不能通用的。 + * + * @param adId 广告位的编号 + * @param needNum 广告位需要推荐的商品数量 + * @param userId 当前访问的用户编号 + * @return List + */ + private List getRecommendResult(int adId, int needNum, String userId) { + List list = new ArrayList<>(); + //默认推荐协同过滤推荐 + //获取基于用户的相似度推荐结果,批处理计算出来的 + List baseUserProductList = recommendModelService.recommendByUserCF(userId, needNum); + //根据商品的id数组获取商品的详细信息 + List baseUserProductsReal = productService.baseInfo(baseUserProductList); + //校验当前商品的状态 + checkProduct(baseUserProductsReal); + + //获取基于物品的离线推荐结果,前一天晚上计算出来的,根据用户昨天浏览的商品编号计算的 + List baseItemList = recommendModelService.recommendByItemCF(userId, needNum); + List baseItemProductsReal = productService.baseInfo(baseItemList); + checkProduct(baseItemProductsReal); + + //获取默认的推荐结果 + List defaultIdsList = recommendModelService.defaultRecommend(adId); + List defaultList = productService.baseInfo(defaultIdsList); + checkProduct(defaultList); + + //对推荐结果进行排序,排序算法根据需求来的 + for (int i = 1; i <= needNum; i++) { + if ((i % 2 == 0)) { + //封装基于物品的实时推荐结果,如果元素不够,就从默认的推荐推荐结果中获取 + getFirstValidItem(list, baseItemProductsReal, defaultList); + } else { + //封装基于用户的实时推荐结果,如果元素不够,就从默认的推荐推荐结果中获取 + getFirstValidItem(list, baseUserProductsReal, defaultList); + } + } + + return list; + } + + + /** + * 将销售出去的硬广插入其中 + * + * @param products + * @param recommendResult + */ + private void setSaleAd(Map products, List recommendResult) { + if (products.size() > 0) { + for (Integer index : products.keySet()) { + if (index.intValue() <= recommendResult.size() && index.intValue() >= 0) { + //这里的实现,是直接替代 某个位置上已经存在的结果。 + recommendResult.set((index.intValue() - 1), products.get(index)); + } + } + } + } + + /** + * 校验商品有效性 + * + * @param recommendList 推荐的商品List + */ + private void checkProduct(List recommendList) { + int size = recommendList.size(); + for (int i = 0; i < size; i++) { + //如果商品状态为下线状态,将商品移除掉 1--上线 2--下线 + /*if (!"1".equals(recommendList.get(i).getProductStatus())) { + recommendList.remove(i); + i--; + size--; + }*/ + } + } + + + /** + * 从原始推荐商品List中获取一个有效的元素存放到目标List中 + * 如果原始推荐商品List中没有足够多的元素,就从默认推荐的结果中获取。 + * + * @param tarList 目标List + * @param orgList 原始List + * @param defaultList 默认的推荐商品List + */ + private void getFirstValidItem(List tarList, List orgList, List defaultList) { + //当前的推荐商品结果为空时,从默认的推荐商品中加载 + if (orgList == null || orgList.size() < 1) { + tarList.add(defaultList.get(0)); + defaultList.remove(0); + } + AgriecomProduce product = null; + //去重 + if (orgList != null && orgList.size() > 0) { + do { + product = orgList.get(0); + orgList.remove(0); + } while (product != null && tarList.contains(product)); + tarList.add(product); + } + } + + + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RuleService.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RuleService.java new file mode 100644 index 0000000000000000000000000000000000000000..9af2cc8eda9d5dddc29abc98e34ab54263e2bc5e --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/service/RuleService.java @@ -0,0 +1,131 @@ +package com.intellagric.agriecom.service.recommend.service; + +import com.github.pagehelper.PageHelper; +import com.intellagric.agriecom.module.recommend.RuleServiceIN; +import com.intellagric.mapper.AgriecomProduceMapper; +import com.intellagric.mapper.RecommendTemplateMapper; +import com.intellagric.pojo.AgriecomProduce; +import com.intellagric.pojo.AgriecomProduceExample; +import com.intellagric.pojo.RecommendTemplate; +import com.intellagric.pojo.RecommendTemplateExample; + +import org.apache.commons.lang3.StringUtils; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.stereotype.Service; + +import java.util.ArrayList; +import java.util.List; + +/** + * @Auther: zhy + * @Date: 2019/5/8 + * @Description: 推荐规则管理服务 + */ +@Service +public class RuleService implements RuleServiceIN { + + @Autowired + private RecommendTemplateMapper recommendTemplateMapper; + + @Autowired + private AgriecomProduceMapper productMapper; + + /** + * 根据栏位ID查询是够对应的推荐模板 + * + * @param columnId + * @return Template + */ + public RecommendTemplate getTemplateByColumnId(int columnId) { + RecommendTemplateExample recommendTemplateExample = new RecommendTemplateExample(); + recommendTemplateExample.createCriteria().andColumnIdEqualTo(columnId); + List recommendTemplateList = recommendTemplateMapper.selectByExample(recommendTemplateExample); + RecommendTemplate template = new RecommendTemplate(); + if (recommendTemplateList.size() > 0) { + template = recommendTemplateList.get(0); + List productIdListByDefault = getProductIdListByDefault(template.getDefaultProducts()); + //封装默认产品列表信息 + AgriecomProduceExample productExample = new AgriecomProduceExample(); + productExample.createCriteria().andProduceIdIn(productIdListByDefault); + List productList = productMapper.selectByExample(productExample); + template.setDefaultProductList(productList); + } + return template; + } + + + /** + * 添加推荐规则模板信息 + * @param recommendTemplate + * @return int + */ + public int addRecommendTemplate(RecommendTemplate recommendTemplate) { + return recommendTemplateMapper.insertSelective(recommendTemplate); + } + + /** + * 删除推荐规则模板信息 + * @param id + * @return int + */ + public int deleteRecommendTemplate(String id) { + return recommendTemplateMapper.deleteByPrimaryKey(id); + } + + /** + * 修改推荐规则模板信息 + * @param + * @return int + */ + public int editRecommendTemplate(RecommendTemplate recommendTemplate) { + return recommendTemplateMapper.updateByPrimaryKeySelective(recommendTemplate); + } + + /** + * 通过id查询推荐规则模板 + * @param id + * @return RecommendTemplate + */ + public RecommendTemplate queryRecommendTemplateById(String id) { + return recommendTemplateMapper.selectByPrimaryKey(id); + } + + /** + * 查询所有推荐规则模板信息 + * @return List + */ + public List queryRecommendTemplateList() { + RecommendTemplateExample RecommendTemplateExample = new RecommendTemplateExample(); + RecommendTemplateExample.createCriteria().andIdIsNotNull(); + return recommendTemplateMapper.selectByExample(RecommendTemplateExample); + } + + /** + * 分页查询所有推荐规则模板记录 + * @return List + */ + public List queryRecommendTemplatePage(int page, int rows) { + PageHelper.startPage(page, rows); + RecommendTemplateExample RecommendTemplateExample = new RecommendTemplateExample(); + RecommendTemplateExample.createCriteria().andIdIsNotNull(); + return recommendTemplateMapper.selectByExample(RecommendTemplateExample); + } + + /** + * 从默认的推荐商品id串中获取商品id数组 + * + * @param defaultProductIds + * @return List + */ + private List getProductIdListByDefault(String defaultProductIds) { + List list = new ArrayList<>(); + if (StringUtils.isNotBlank(defaultProductIds)) { + String[] productIds = defaultProductIds.split(","); + for (String item : productIds) { + list.add(item); + } + } + return list; + } + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/CookieUtils.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/CookieUtils.java new file mode 100644 index 0000000000000000000000000000000000000000..3d24ac8a8ad2f16952676306e834156c1ace53da --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/CookieUtils.java @@ -0,0 +1,227 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import javax.servlet.http.Cookie; +import javax.servlet.http.HttpServletRequest; +import javax.servlet.http.HttpServletResponse; +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import java.net.URLEncoder; + + +/** + * + * Cookie 工具类 + * + */ +public final class CookieUtils { + + /** + * 得到Cookie的值, 不编码 + * + * @param request + * @param cookieName + * @return + */ + public static String getCookieValue(HttpServletRequest request, String cookieName) { + return getCookieValue(request, cookieName, false); + } + + /** + * 得到Cookie的值, + * + * @param request + * @param cookieName + * @return + */ + public static String getCookieValue(HttpServletRequest request, String cookieName, boolean isDecoder) { + Cookie[] cookieList = request.getCookies(); + if (cookieList == null || cookieName == null) { + return null; + } + String retValue = null; + try { + for (int i = 0; i < cookieList.length; i++) { + if (cookieList[i].getName().equals(cookieName)) { + if (isDecoder) { + retValue = URLDecoder.decode(cookieList[i].getValue(), "UTF-8"); + } else { + retValue = cookieList[i].getValue(); + } + break; + } + } + } catch (UnsupportedEncodingException e) { + e.printStackTrace(); + } + return retValue; + } + + /** + * 得到Cookie的值, + * + * @param request + * @param cookieName + * @return + */ + public static String getCookieValue(HttpServletRequest request, String cookieName, String encodeString) { + Cookie[] cookieList = request.getCookies(); + if (cookieList == null || cookieName == null) { + return null; + } + String retValue = null; + try { + for (int i = 0; i < cookieList.length; i++) { + if (cookieList[i].getName().equals(cookieName)) { + retValue = URLDecoder.decode(cookieList[i].getValue(), encodeString); + break; + } + } + } catch (UnsupportedEncodingException e) { + e.printStackTrace(); + } + return retValue; + } + + /** + * 设置Cookie的值 不设置生效时间默认浏览器关闭即失效,也不编码 + */ + public static void setCookie(HttpServletRequest request, HttpServletResponse response, String cookieName, + String cookieValue) { + setCookie(request, response, cookieName, cookieValue, -1); + } + + /** + * 设置Cookie的值 在指定时间内生效,但不编码 + */ + public static void setCookie(HttpServletRequest request, HttpServletResponse response, String cookieName, + String cookieValue, int cookieMaxage) { + setCookie(request, response, cookieName, cookieValue, cookieMaxage, false); + } + + /** + * 设置Cookie的值 不设置生效时间,但编码 + */ + public static void setCookie(HttpServletRequest request, HttpServletResponse response, String cookieName, + String cookieValue, boolean isEncode) { + setCookie(request, response, cookieName, cookieValue, -1, isEncode); + } + + /** + * 设置Cookie的值 在指定时间内生效, 编码参数 + */ + public static void setCookie(HttpServletRequest request, HttpServletResponse response, String cookieName, + String cookieValue, int cookieMaxage, boolean isEncode) { + doSetCookie(request, response, cookieName, cookieValue, cookieMaxage, isEncode); + } + + /** + * 设置Cookie的值 在指定时间内生效, 编码参数(指定编码) + */ + public static void setCookie(HttpServletRequest request, HttpServletResponse response, String cookieName, + String cookieValue, int cookieMaxage, String encodeString) { + doSetCookie(request, response, cookieName, cookieValue, cookieMaxage, encodeString); + } + + /** + * 删除Cookie带cookie域名 + */ + public static void deleteCookie(HttpServletRequest request, HttpServletResponse response, + String cookieName) { + doSetCookie(request, response, cookieName, "", -1, false); + } + + /** + * 设置Cookie的值,并使其在指定时间内生效 + * + * @param cookieMaxage cookie生效的最大秒数 + */ + private static final void doSetCookie(HttpServletRequest request, HttpServletResponse response, + String cookieName, String cookieValue, int cookieMaxage, boolean isEncode) { + try { + if (cookieValue == null) { + cookieValue = ""; + } else if (isEncode) { + cookieValue = URLEncoder.encode(cookieValue, "utf-8"); + } + Cookie cookie = new Cookie(cookieName, cookieValue); + if (cookieMaxage > 0) + cookie.setMaxAge(cookieMaxage); + if (null != request) {// 设置域名的cookie + String domainName = getDomainName(request); + System.out.println(domainName); + if (!"localhost".equals(domainName)) { + cookie.setDomain(domainName); + } + } + cookie.setPath("/"); + response.addCookie(cookie); + } catch (Exception e) { + e.printStackTrace(); + } + } + + /** + * 设置Cookie的值,并使其在指定时间内生效 + * + * @param cookieMaxage cookie生效的最大秒数 + */ + private static final void doSetCookie(HttpServletRequest request, HttpServletResponse response, + String cookieName, String cookieValue, int cookieMaxage, String encodeString) { + try { + if (cookieValue == null) { + cookieValue = ""; + } else { + cookieValue = URLEncoder.encode(cookieValue, encodeString); + } + Cookie cookie = new Cookie(cookieName, cookieValue); + if (cookieMaxage > 0) + cookie.setMaxAge(cookieMaxage); + if (null != request) {// 设置域名的cookie + String domainName = getDomainName(request); + System.out.println(domainName); + if (!"localhost".equals(domainName)) { + cookie.setDomain(domainName); + } + } + cookie.setPath("/"); + response.addCookie(cookie); + } catch (Exception e) { + e.printStackTrace(); + } + } + + /** + * 得到cookie的域名 + */ + private static final String getDomainName(HttpServletRequest request) { + String domainName = null; + + String serverName = request.getRequestURL().toString(); + if (serverName == null || serverName.equals("")) { + domainName = ""; + } else { + serverName = serverName.toLowerCase(); + serverName = serverName.substring(7); + final int end = serverName.indexOf("/"); + serverName = serverName.substring(0, end); + final String[] domains = serverName.split("\\."); + int len = domains.length; + if (len > 3) { + // www.xxx.com.cn + domainName = "." + domains[len - 3] + "." + domains[len - 2] + "." + domains[len - 1]; + } else if (len <= 3 && len > 1) { + // xxx.com or xxx.cn + domainName = "." + domains[len - 2] + "." + domains[len - 1]; + } else { + domainName = serverName; + } + } + + if (domainName != null && domainName.indexOf(":") > 0) { + String[] ary = domainName.split("\\:"); + domainName = ary[0]; + } + return domainName; + } + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/DateUtils.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/DateUtils.java new file mode 100644 index 0000000000000000000000000000000000000000..c8a17fcc6b9140c1993eb62527bffc6ed02ef52e --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/DateUtils.java @@ -0,0 +1,166 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import java.text.NumberFormat; +import java.text.ParseException; +import java.text.SimpleDateFormat; +import java.util.Calendar; +import java.util.Date; + +public class DateUtils { + + /** + * 根据 formatter格式返回系统日期 + * + * @param formatter + * @return + */ + public static String getDateTime(String formatter) { + SimpleDateFormat df = new SimpleDateFormat(formatter); + return df.format(new Date()); + } + + public static String getDataTime(Calendar calendar) { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + return formatter.format(calendar.getTime()); + } + + public static String before15Minute(Calendar calendar) { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + calendar.add(Calendar.MINUTE, -15); + return formatter.format(calendar.getTime()); + } + + public static String before30Minute(Calendar calendar) { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + calendar.add(Calendar.MINUTE, -30); + return formatter.format(calendar.getTime()); + } + + public static String beforeOneHour(Calendar calendar) { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + calendar.add(Calendar.MINUTE, -60); + return formatter.format(calendar.getTime()); + } + + public static String beforeOneDay(Calendar calendar) { + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + calendar.add(Calendar.DAY_OF_MONTH, -1); + return formatter.format(calendar.getTime()); + } + + public static String getDateTime() { + return DateUtils.getDateTime("yyyy-MM-dd HH:mm:ss"); + } + + public static String getDate() { + return getDateTime("yyyy-MM-dd").replaceAll("-", ""); + } + + public static String getDate(String formatter) { + return getDateTime(formatter); + } + + public static String removeTime(String dateTime) { + return dateTime.substring(0, dateTime.indexOf(" ")); + } + + /** + * 获取指定时间之前minute的时间 例如:minute = 30, 2014-07-15 12:00:00 -> 2014-07-15 11:30:00 + * + * @param time + * @return + */ + public static String getBeforeMinute(String time, int minute) { + String result = time; + SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); + try { + Date myDate = formatter.parse(time); + Calendar c = Calendar.getInstance(); + c.setTime(myDate); + c.add(Calendar.MINUTE, -minute); + myDate = c.getTime(); + result = formatter.format(myDate); + } catch (ParseException e) { + e.printStackTrace(); + } + return result; + } + + /** + * 截取日期 yyyyMMdd + * + * @param date + * @return + */ + public static String splitDate(String date) { + return date.substring(0, date.indexOf(" ")).replace("-", ""); + } + + /** + * 替换{}中的变量 + * + * @param data + * @param key + * @param newData + * @return + */ + public static String replaceParentheses(String data, String key, String newData) { + return data.replaceAll("\\{" + key + "\\}", newData); + } + + public static String replaceParentheses(String data, String key) { + return data.replaceAll("\\{" + key + "\\}", ""); + } + + /** + * 格式化double,不使用科学计数法 + * + * @param doubleValue + * @param fractionDigits + * @return + */ + public static String formatDouble(String doubleValue, int fractionDigits) { + NumberFormat nf = NumberFormat.getInstance(); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(fractionDigits); + return nf.format(Double.parseDouble(doubleValue)); + } + + public static String formatDouble(double doubleValue, int fractionDigits) { + NumberFormat nf = NumberFormat.getInstance(); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(fractionDigits); + return nf.format(doubleValue); + } + + public static String formatDouble(String doubleValue) { + NumberFormat nf = NumberFormat.getInstance(); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(2); + return nf.format(Double.parseDouble(doubleValue)); + } + + public static String formatDouble(double doubleValue) { + NumberFormat nf = NumberFormat.getInstance(); + nf.setGroupingUsed(false); + nf.setMaximumFractionDigits(2); + return nf.format(doubleValue); + } + + public static String getInt(Object str) { + return Integer.toString(Integer.parseInt(str.toString().replaceAll("\\.\\d+", ""))); + } + + public static String getYesterday(String formatter) { + SimpleDateFormat df = new SimpleDateFormat(formatter); + Calendar calendar = Calendar.getInstance(); + calendar.add(Calendar.DATE, -1); + return df.format(calendar.getTime()); + } + + public static void main(String[] args) { + System.out.print(getDate()); + } + + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/IDUtils.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/IDUtils.java new file mode 100644 index 0000000000000000000000000000000000000000..401d055c718b774885ef161663eb4e48e21a214e --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/IDUtils.java @@ -0,0 +1,48 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import java.util.Random; + +/** + * 各种id生成策略 + *

      Title: IDUtils

      + *

      Description:

      + *

      Company: www.itcast.com

      + * @author 入云龙 + * @date 2015年7月22日下午2:32:10 + * @version 1.0 + */ +public class IDUtils { + + /** + * 图片名生成 + */ + public static String genImageName() { + //取当前时间的长整形值包含毫秒 + long millis = System.currentTimeMillis(); + //long millis = System.nanoTime(); + //加上三位随机数 + Random random = new Random(); + int end3 = random.nextInt(999); + //如果不足三位前面补0 + String str = millis + String.format("%03d", end3); + + return str; + } + + /** + * 商品id生成 + */ + public static long genItemId() { + //取当前时间的长整形值包含毫秒 + long millis = System.currentTimeMillis(); + //long millis = System.nanoTime(); + //加上两位随机数 + Random random = new Random(); + int end2 = random.nextInt(99); + //如果不足两位前面补0 + String str = millis + String.format("%02d", end2); + long id = new Long(str); + return id; + } + +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/ListSortUtils.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/ListSortUtils.java new file mode 100644 index 0000000000000000000000000000000000000000..e11aa73e63fb6f4ef71f120d7b0c570eabc4652b --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/ListSortUtils.java @@ -0,0 +1,219 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import java.lang.reflect.Field; +import java.lang.reflect.InvocationTargetException; +import java.lang.reflect.Method; +import java.util.Collections; +import java.util.Comparator; +import java.util.Date; +import java.util.List; +import java.util.regex.Matcher; +import java.util.regex.Pattern; + +/** + * @Auther: zhy + * @Date: 2018/11/8 + * @Description: 对集合进行排序的工具类 + */ +public class ListSortUtils { + + private static final String SORT_ASC = "asc"; + + + private static final String SORT_DESC = "desc"; + + + /** + * [简述]: 对List数组排序 + * @param list 源数据 排序集合 + * @param sort 升序 还是 降序,默认升序 + * @return List + */ + public static List sort(List list, final String sort){ + Collections.sort(list, new Comparator() { + @Override + public int compare(Object o1, Object o2) { + int ret = 0; + if(o1 instanceof Integer){ + ret = ((Integer)o1).compareTo((Integer)o2); + } else if(o1 instanceof Double){ + ret = ((Double)o1).compareTo((Double)o2); + } else if(o1 instanceof Long){ + ret = ((Long)o1).compareTo((Long)o2); + } else if(o1 instanceof Float){ + ret = ((Float)o1).compareTo((Float)o2); + } else if(o1 instanceof Date){ + ret = ((Date)o1).compareTo((Date) o2); + } else if(isDouble(String.valueOf(o1)) && isDouble(String.valueOf(o2))){ + ret = (new Double(o1.toString())).compareTo(new Double(o2.toString())); + } else { + ret = String.valueOf(o1).compareTo(String.valueOf(o2)); + } + if(null != sort && SORT_DESC.equalsIgnoreCase(sort)){ + return -ret; + }else{ + return ret; + } + } + }); + return list; + } + + + /** + *[简述]: List 泛型 排序 + * @param list 源数据 排序集合 + * @param field 排序的数据字段名称 + * @param sort 升序 还是 降序,默认升序 + * @param 泛型T + * @return List + */ + public static List sort(List list,final String field,final String sort){ + Collections.sort(list, new Comparator() { + @Override + public int compare(T o1, T o2) { + int ret = 0; + try { + Method method1 = o1.getClass().getDeclaredMethod(getMethodName(field),null); + Method method2 = o2.getClass().getDeclaredMethod(getMethodName(field), null); + Field field1 = o1.getClass().getDeclaredField(field); + field1.setAccessible(true); + Class type = field1.getType(); + if(type == int.class){ + ret = ((Integer)field1.getInt(o1)).compareTo((Integer)field1.getInt(o2)); + } else if(type == double.class){ + ret = ((Double)field1.getDouble(o1)).compareTo((Double)field1.getDouble(o2)); + } else if(type == long.class){ + ret = ((Long)field1.getLong(o1)).compareTo((Long)field1.getLong(o2)); + } else if(type == float.class){ + ret = ((Float)field1.getFloat(o1)).compareTo((Float)field1.getFloat(o2)); + } else if(type == Date.class){ + ret = ((Date)field1.get(o1)).compareTo((Date) field1.get(o2)); + } else if(isDouble(String.valueOf(field1.get(o1))) && isDouble(String.valueOf(field1.get(o2)))){ + ret = (new Double(method1.invoke(o1).toString())).compareTo(new Double(method2.invoke(o2).toString())); + } else { + ret = String.valueOf(field1.get(o1)).compareTo(String.valueOf(field1.get(o2))); + } + + + } catch (IllegalAccessException e) { + e.printStackTrace(); + } catch (NoSuchFieldException e) { + e.printStackTrace(); + } catch (NoSuchMethodException e) { + e.printStackTrace(); + } catch (InvocationTargetException e) { + e.printStackTrace(); + } + if(null != sort && SORT_DESC.equalsIgnoreCase(sort)){ + return -ret; + }else{ + return ret; + } + } + }); + return list; + } + + + private static boolean isDouble(String str){ + boolean flag = false; + if(isInteger(str) || isFloat(str)){ + flag = true; + } + return flag; + } + + + private static boolean isInteger(String str){ + Matcher matcher = Pattern.compile("^[+-]?[0-9]+$").matcher(str); + return matcher.find(); + } + + + private static boolean isFloat(String str){ + return str.matches("[\\d]+\\.[\\d]+"); + } + + + /** + *[简述]: List 泛型 排序 + * @param list 源数据 排序集合 + * @param fields 排序的数据字段名称 + * @param sorts 升序 还是 降序 + * @param 泛型T + * @return List + */ + public static List sort(List list,final String [] fields,final String [] sorts){ + if(null != fields && fields.length > 0){ + for(int index = 0;index < fields.length;index ++){ + String sortRule = SORT_ASC; + if(null != sorts && sorts.length >= index && null != sorts[index]){ + sortRule = sorts[index]; + } + final String sort = sortRule; + final String field = fields[index]; + Collections.sort(list, new Comparator() { + @Override + public int compare(T o1, T o2) { + int ret = 0; + try { + Method method1 = o1.getClass().getDeclaredMethod(getMethodName(field),null); + Method method2 = o1.getClass().getDeclaredMethod(getMethodName(field), null); + Field field1 = o1.getClass().getDeclaredField(field); + field1.setAccessible(true); + Class type = field1.getType(); + if(type == int.class){ + ret = ((Integer)field1.getInt(o1)).compareTo((Integer)field1.getInt(o2)); + } else if(type == double.class){ + ret = ((Double)field1.getDouble(o1)).compareTo((Double)field1.getDouble(o2)); + } else if(type == long.class){ + ret = ((Long)field1.getLong(o1)).compareTo((Long)field1.getLong(o2)); + } else if(type == float.class){ + ret = ((Float)field1.getFloat(o1)).compareTo((Float)field1.getFloat(o2)); + } else if(type == Date.class){ + ret = ((Date)field1.get(o1)).compareTo((Date) field1.get(o2)); + } else if(isDouble(String.valueOf(field1.get(o1))) && isDouble(String.valueOf(field1.get(o2)))){ + ret = (new Double(method1.invoke(o1).toString())).compareTo(new Double(method2.invoke(o2).toString())); + } else { + ret = String.valueOf(field1.get(o1)).compareTo(String.valueOf(field1.get(o2))); + } + + + } catch (NoSuchMethodException e) { + e.printStackTrace(); + } catch (InvocationTargetException e) { + e.printStackTrace(); + } catch (IllegalAccessException e) { + e.printStackTrace(); + } catch (NoSuchFieldException e) { + e.printStackTrace(); + } + if(null != sort && SORT_DESC.equalsIgnoreCase(sort)){ + return -ret; + }else{ + return ret; + } + } + }); + } + } + return list; + } + + + private static String getMethodName(String str){ + StringBuffer name = new StringBuffer(); + name = name.append("get").append(firstLetterToCapture(str)); + return name.toString(); + } + + + private static String firstLetterToCapture(String name){ + char[] arr = name.toCharArray(); + arr[0] -= 32; + return String.valueOf(arr); + } + + +} \ No newline at end of file diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/MyShardedJedisPool.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/MyShardedJedisPool.java new file mode 100644 index 0000000000000000000000000000000000000000..e934f1bfc90cdf9d125d1548063348e0f6a55169 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/MyShardedJedisPool.java @@ -0,0 +1,53 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import redis.clients.jedis.*; + +import java.util.LinkedList; +import java.util.List; + +/** + * Describe: 请补充类描述 + * Author: maoxiangyi + * Domain: www.itcast.cn + * Data: 2015/11/9. + */ +public class MyShardedJedisPool { + + private static ShardedJedisPool shardedJedisPool; + + // 静态代码初始化池配置 + static { + //change "maxActive" -> "maxTotal" and "maxWait" -> "maxWaitMillis" in all examples + JedisPoolConfig config = new JedisPoolConfig(); + //控制一个pool最多有多少个状态为idle(空闲的)的jedis实例。 + config.setMaxIdle(5); + //控制一个pool可分配多少个jedis实例,通过pool.getResource()来获取; + //如果赋值为-1,则表示不限制;如果pool已经分配了maxActive个jedis实例,则此时pool的状态为exhausted(耗尽)。 + //在borrow一个jedis实例时,是否提前进行validate操作;如果为true,则得到的jedis实例均是可用的; + config.setMaxTotal(-1); + //表示当borrow(引入)一个jedis实例时,最大的等待时间,如果超过等待时间,则直接抛出JedisConnectionException; + config.setMaxWaitMillis(5); + config.setTestOnBorrow(true); + config.setTestOnReturn(true); + //创建四个redis服务实例,并封装在list中 + List list = new LinkedList(); + list.add(new JedisShardInfo("192.168.25.137", 6379)); + //创建具有分片功能的的Jedis连接池 + shardedJedisPool = new ShardedJedisPool(config, list); + } + + public static ShardedJedisPool getShardedJedisPool() { + return shardedJedisPool; + } + + public static ShardedJedis getResource() { + return shardedJedisPool.getResource(); + } + + public static void main(String[] args) { + ShardedJedis jedis = MyShardedJedisPool.getShardedJedisPool().getResource(); + String itemCF = jedis.hget("recom:2", "UserCF"); + System.out.println(itemCF); + + } +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/UUIDUtils.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/UUIDUtils.java new file mode 100644 index 0000000000000000000000000000000000000000..4057059409117f90b268256fe699ece18e81d2a7 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/java/com/intellagric/agriecom/service/recommend/utils/UUIDUtils.java @@ -0,0 +1,22 @@ +package com.intellagric.agriecom.service.recommend.utils; + +import java.util.UUID; + +public class UUIDUtils { + + /** + * 返回大写不带"-"的UUID + * @return + */ + public static String getUUID() { + return getOriginUUID().replace("-", "").toUpperCase(); + } + + /** + * 返回原始标准的UUID + * @return + */ + public static String getOriginUUID() { + return UUID.randomUUID().toString(); + } +} diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/resources/spring/applicationContext-service.xml b/intellagric-agriecom/intellagric-agriecom-service/src/main/resources/spring/applicationContext-service.xml index 66b2069faacfaf6647247329c35dfdbba3850501..d7b2c6425ac2cbf5ac3da5dfcc47da6c72f754f8 100644 --- a/intellagric-agriecom/intellagric-agriecom-service/src/main/resources/spring/applicationContext-service.xml +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/resources/spring/applicationContext-service.xml @@ -34,6 +34,12 @@ + + + + + + diff --git a/intellagric-agriecom/intellagric-agriecom-service/src/main/test/Test01.java b/intellagric-agriecom/intellagric-agriecom-service/src/main/test/Test01.java new file mode 100644 index 0000000000000000000000000000000000000000..3b1d2df7f4ecfbb10db2bebf7ec79ba6c1205bf8 --- /dev/null +++ b/intellagric-agriecom/intellagric-agriecom-service/src/main/test/Test01.java @@ -0,0 +1,90 @@ +import org.junit.Test; + +import java.io.*; + +public class Test01 { + + public static void main(String[] args) { + try { + BufferedWriter writer1=new BufferedWriter(new FileWriter("D:\\BaiduNetdiskDownload\\amazon-fine-foods\\pos.txt")); + BufferedWriter writer2=new BufferedWriter(new FileWriter("D:\\BaiduNetdiskDownload\\amazon-fine-foods\\mid.txt")); + BufferedWriter writer3=new BufferedWriter(new FileWriter("D:\\BaiduNetdiskDownload\\amazon-fine-foods\\neg.txt")); + BufferedReader reader=new BufferedReader(new FileReader("D:\\BaiduNetdiskDownload\\amazon-fine-foods\\Reviews.csv")); + String str=null; + System.out.println(reader.readLine()); + int count1=0,count2=0,count3=0; + while((count1!=200||count2!=200||count3!=200)&&(str=reader.readLine())!=null){ + String[] strs=str.split(","); + + String score=strs[6]; + switch (Integer.parseInt(score)){ + case 5: + case 4: + if(count1==200) + break; + for (int i=9;i elements - // (i.e., `typeof document.createElement( "object" ) === "function"`). - // We don't want to classify *any* DOM node as a function. - return typeof obj === "function" && typeof obj.nodeType !== "number"; - }; - - -var isWindow = function isWindow( obj ) { - return obj != null && obj === obj.window; - }; - - - - - var preservedScriptAttributes = { - type: true, - src: true, - noModule: true - }; - - function DOMEval( code, doc, node ) { - doc = doc || document; - - var i, - script = doc.createElement( "script" ); - - script.text = code; - if ( node ) { - for ( i in preservedScriptAttributes ) { - if ( node[ i ] ) { - script[ i ] = node[ i ]; - } - } - } - doc.head.appendChild( script ).parentNode.removeChild( script ); - } - - -function toType( obj ) { - if ( obj == null ) { - return obj + ""; - } - - // Support: Android <=2.3 only (functionish RegExp) - return typeof obj === "object" || typeof obj === "function" ? - class2type[ toString.call( obj ) ] || "object" : - typeof obj; -} -/* global Symbol */ -// Defining this global in .eslintrc.json would create a danger of using the global -// unguarded in another place, it seems safer to define global only for this module - var - version = "3.3.1", + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + + version = "2.1.3", // Define a local copy of jQuery jQuery = function( selector, context ) { - // The jQuery object is actually just the init constructor 'enhanced' // Need init if jQuery is called (just allow error to be thrown if not included) return new jQuery.fn.init( selector, context ); }, - // Support: Android <=4.0 only + // Support: Android<4.1 // Make sure we trim BOM and NBSP - rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g; + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, -jQuery.fn = jQuery.prototype = { + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return letter.toUpperCase(); + }; +jQuery.fn = jQuery.prototype = { // The current version of jQuery being used jquery: version, constructor: jQuery, + // Start with an empty selector + selector: "", + // The default length of a jQuery object is 0 length: 0, @@ -160,14 +108,13 @@ jQuery.fn = jQuery.prototype = { // Get the Nth element in the matched element set OR // Get the whole matched element set as a clean array get: function( num ) { + return num != null ? - // Return all the elements in a clean array - if ( num == null ) { - return slice.call( this ); - } + // Return just the one element from the set + ( num < 0 ? this[ num + this.length ] : this[ num ] ) : - // Return just the one element from the set - return num < 0 ? this[ num + this.length ] : this[ num ]; + // Return all the elements in a clean array + slice.call( this ); }, // Take an array of elements and push it onto the stack @@ -179,20 +126,23 @@ jQuery.fn = jQuery.prototype = { // Add the old object onto the stack (as a reference) ret.prevObject = this; + ret.context = this.context; // Return the newly-formed element set return ret; }, // Execute a callback for every element in the matched set. - each: function( callback ) { - return jQuery.each( this, callback ); + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); }, map: function( callback ) { - return this.pushStack( jQuery.map( this, function( elem, i ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { return callback.call( elem, i, elem ); - } ) ); + })); }, slice: function() { @@ -210,11 +160,11 @@ jQuery.fn = jQuery.prototype = { eq: function( i ) { var len = this.length, j = +i + ( i < 0 ? len : 0 ); - return this.pushStack( j >= 0 && j < len ? [ this[ j ] ] : [] ); + return this.pushStack( j >= 0 && j < len ? [ this[j] ] : [] ); }, end: function() { - return this.prevObject || this.constructor(); + return this.prevObject || this.constructor(null); }, // For internal use only. @@ -226,7 +176,7 @@ jQuery.fn = jQuery.prototype = { jQuery.extend = jQuery.fn.extend = function() { var options, name, src, copy, copyIsArray, clone, - target = arguments[ 0 ] || {}, + target = arguments[0] || {}, i = 1, length = arguments.length, deep = false; @@ -241,7 +191,7 @@ jQuery.extend = jQuery.fn.extend = function() { } // Handle case when target is a string or something (possible in deep copy) - if ( typeof target !== "object" && !isFunction( target ) ) { + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { target = {}; } @@ -252,10 +202,8 @@ jQuery.extend = jQuery.fn.extend = function() { } for ( ; i < length; i++ ) { - // Only deal with non-null/undefined values - if ( ( options = arguments[ i ] ) != null ) { - + if ( (options = arguments[ i ]) != null ) { // Extend the base object for ( name in options ) { src = target[ name ]; @@ -267,15 +215,13 @@ jQuery.extend = jQuery.fn.extend = function() { } // Recurse if we're merging plain objects or arrays - if ( deep && copy && ( jQuery.isPlainObject( copy ) || - ( copyIsArray = Array.isArray( copy ) ) ) ) { - + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { if ( copyIsArray ) { copyIsArray = false; - clone = src && Array.isArray( src ) ? src : []; + clone = src && jQuery.isArray(src) ? src : []; } else { - clone = src && jQuery.isPlainObject( src ) ? src : {}; + clone = src && jQuery.isPlainObject(src) ? src : {}; } // Never move original objects, clone them @@ -293,8 +239,7 @@ jQuery.extend = jQuery.fn.extend = function() { return target; }; -jQuery.extend( { - +jQuery.extend({ // Unique for each copy of jQuery on the page expando: "jQuery" + ( version + Math.random() ).replace( /\D/g, "" ), @@ -307,58 +252,138 @@ jQuery.extend( { noop: function() {}, - isPlainObject: function( obj ) { - var proto, Ctor; + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray, + + isWindow: function( obj ) { + return obj != null && obj === obj.window; + }, + + isNumeric: function( obj ) { + // parseFloat NaNs numeric-cast false positives (null|true|false|"") + // ...but misinterprets leading-number strings, particularly hex literals ("0x...") + // subtraction forces infinities to NaN + // adding 1 corrects loss of precision from parseFloat (#15100) + return !jQuery.isArray( obj ) && (obj - parseFloat( obj ) + 1) >= 0; + }, - // Detect obvious negatives - // Use toString instead of jQuery.type to catch host objects - if ( !obj || toString.call( obj ) !== "[object Object]" ) { + isPlainObject: function( obj ) { + // Not plain objects: + // - Any object or value whose internal [[Class]] property is not "[object Object]" + // - DOM nodes + // - window + if ( jQuery.type( obj ) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { return false; } - proto = getProto( obj ); - - // Objects with no prototype (e.g., `Object.create( null )`) are plain - if ( !proto ) { - return true; + if ( obj.constructor && + !hasOwn.call( obj.constructor.prototype, "isPrototypeOf" ) ) { + return false; } - // Objects with prototype are plain iff they were constructed by a global Object function - Ctor = hasOwn.call( proto, "constructor" ) && proto.constructor; - return typeof Ctor === "function" && fnToString.call( Ctor ) === ObjectFunctionString; + // If the function hasn't returned already, we're confident that + // |obj| is a plain object, created by {} or constructed with new Object + return true; }, isEmptyObject: function( obj ) { - - /* eslint-disable no-unused-vars */ - // See https://github.com/eslint/eslint/issues/6125 var name; - for ( name in obj ) { return false; } return true; }, + type: function( obj ) { + if ( obj == null ) { + return obj + ""; + } + // Support: Android<4.0, iOS<6 (functionish RegExp) + return typeof obj === "object" || typeof obj === "function" ? + class2type[ toString.call(obj) ] || "object" : + typeof obj; + }, + // Evaluates a script in a global context globalEval: function( code ) { - DOMEval( code ); + var script, + indirect = eval; + + code = jQuery.trim( code ); + + if ( code ) { + // If the code includes a valid, prologue position + // strict mode pragma, execute code by injecting a + // script tag into the document. + if ( code.indexOf("use strict") === 1 ) { + script = document.createElement("script"); + script.text = code; + document.head.appendChild( script ).parentNode.removeChild( script ); + } else { + // Otherwise, avoid the DOM node creation, insertion + // and removal by using an indirect global eval + indirect( code ); + } + } }, - each: function( obj, callback ) { - var length, i = 0; + // Convert dashed to camelCase; used by the css and data modules + // Support: IE9-11+ + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, - if ( isArrayLike( obj ) ) { - length = obj.length; - for ( ; i < length; i++ ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var value, + i = 0, + length = obj.length, + isArray = isArraylike( obj ); + + if ( args ) { + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.apply( obj[ i ], args ); + + if ( value === false ) { + break; + } } } + + // A special, fast, case for the most common use of each } else { - for ( i in obj ) { - if ( callback.call( obj[ i ], i, obj[ i ] ) === false ) { - break; + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } + } + } else { + for ( i in obj ) { + value = callback.call( obj[ i ], i, obj[ i ] ); + + if ( value === false ) { + break; + } } } } @@ -366,7 +391,7 @@ jQuery.extend( { return obj; }, - // Support: Android <=4.0 only + // Support: Android<4.1 trim: function( text ) { return text == null ? "" : @@ -378,7 +403,7 @@ jQuery.extend( { var ret = results || []; if ( arr != null ) { - if ( isArrayLike( Object( arr ) ) ) { + if ( isArraylike( Object(arr) ) ) { jQuery.merge( ret, typeof arr === "string" ? [ arr ] : arr @@ -395,8 +420,6 @@ jQuery.extend( { return arr == null ? -1 : indexOf.call( arr, elem, i ); }, - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit merge: function( first, second ) { var len = +second.length, j = 0, @@ -432,13 +455,14 @@ jQuery.extend( { // arg is for internal usage only map: function( elems, callback, arg ) { - var length, value, + var value, i = 0, + length = elems.length, + isArray = isArraylike( elems ), ret = []; // Go through the array, translating each of the items to their new values - if ( isArrayLike( elems ) ) { - length = elems.length; + if ( isArray ) { for ( ; i < length; i++ ) { value = callback( elems[ i ], i, arg ); @@ -465,47 +489,72 @@ jQuery.extend( { // A global GUID counter for objects guid: 1, + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context || this, args.concat( slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || jQuery.guid++; + + return proxy; + }, + + now: Date.now, + // jQuery.support is not used in Core but other projects attach their - // property to it so it needs to exist. + // properties to it so it needs to exist. support: support -} ); - -if ( typeof Symbol === "function" ) { - jQuery.fn[ Symbol.iterator ] = arr[ Symbol.iterator ]; -} +}); // Populate the class2type map -jQuery.each( "Boolean Number String Function Array Date RegExp Object Error Symbol".split( " " ), -function( i, name ) { +jQuery.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function(i, name) { class2type[ "[object " + name + "]" ] = name.toLowerCase(); -} ); - -function isArrayLike( obj ) { +}); - // Support: real iOS 8.2 only (not reproducible in simulator) - // `in` check used to prevent JIT error (gh-2145) - // hasOwn isn't used here due to false negatives - // regarding Nodelist length in IE - var length = !!obj && "length" in obj && obj.length, - type = toType( obj ); +function isArraylike( obj ) { + var length = obj.length, + type = jQuery.type( obj ); - if ( isFunction( obj ) || isWindow( obj ) ) { + if ( type === "function" || jQuery.isWindow( obj ) ) { return false; } + if ( obj.nodeType === 1 && length ) { + return true; + } + return type === "array" || length === 0 || typeof length === "number" && length > 0 && ( length - 1 ) in obj; } var Sizzle = /*! - * Sizzle CSS Selector Engine v2.3.3 - * https://sizzlejs.com/ + * Sizzle CSS Selector Engine v2.2.0-pre + * http://sizzlejs.com/ * - * Copyright jQuery Foundation and other contributors + * Copyright 2008, 2014 jQuery Foundation, Inc. and other contributors * Released under the MIT license * http://jquery.org/license * - * Date: 2016-08-08 + * Date: 2014-12-16 */ (function( window ) { @@ -546,6 +595,9 @@ var i, return 0; }, + // General-purpose constants + MAX_NEGATIVE = 1 << 31, + // Instance methods hasOwn = ({}).hasOwnProperty, arr = [], @@ -554,7 +606,7 @@ var i, push = arr.push, slice = arr.slice, // Use a stripped-down indexOf as it's faster than native - // https://jsperf.com/thor-indexof-vs-for/5 + // http://jsperf.com/thor-indexof-vs-for/5 indexOf = function( list, elem ) { var i = 0, len = list.length; @@ -570,21 +622,25 @@ var i, // Regular expressions - // http://www.w3.org/TR/css3-selectors/#whitespace + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[\\w-]|[^\\x00-\\xa0])+", - // http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier - identifier = "(?:\\\\.|[\\w-]|[^\0-\\xa0])+", + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier http://www.w3.org/TR/css3-selectors/#attribute-selectors + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors - attributes = "\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")(?:" + whitespace + // Operator (capture 2) "*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]" "*(?:'((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\"|(" + identifier + "))|)" + whitespace + "*\\]", - pseudos = ":(" + identifier + ")(?:\\((" + + pseudos = ":(" + characterEncoding + ")(?:\\((" + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments: // 1. quoted (capture 3; capture 4 or capture 5) "('((?:\\\\.|[^\\\\'])*)'|\"((?:\\\\.|[^\\\\\"])*)\")|" + @@ -607,9 +663,9 @@ var i, ridentifier = new RegExp( "^" + identifier + "$" ), matchExpr = { - "ID": new RegExp( "^#(" + identifier + ")" ), - "CLASS": new RegExp( "^\\.(" + identifier + ")" ), - "TAG": new RegExp( "^(" + identifier + "|[*])" ), + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), "ATTR": new RegExp( "^" + attributes ), "PSEUDO": new RegExp( "^" + pseudos ), "CHILD": new RegExp( "^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\(" + whitespace + @@ -631,9 +687,9 @@ var i, rquickExpr = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, rsibling = /[+~]/, + rescape = /'|\\/g, - // CSS escapes - // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters + // CSS escapes http://www.w3.org/TR/CSS21/syndata.html#escaped-characters runescape = new RegExp( "\\\\([\\da-f]{1,6}" + whitespace + "?|(" + whitespace + ")|.)", "ig" ), funescape = function( _, escaped, escapedWhitespace ) { var high = "0x" + escaped - 0x10000; @@ -649,39 +705,13 @@ var i, String.fromCharCode( high >> 10 | 0xD800, high & 0x3FF | 0xDC00 ); }, - // CSS string/identifier serialization - // https://drafts.csswg.org/cssom/#common-serializing-idioms - rcssescape = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\0-\x1f\x7f-\uFFFF\w-]/g, - fcssescape = function( ch, asCodePoint ) { - if ( asCodePoint ) { - - // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER - if ( ch === "\0" ) { - return "\uFFFD"; - } - - // Control characters and (dependent upon position) numbers get escaped as code points - return ch.slice( 0, -1 ) + "\\" + ch.charCodeAt( ch.length - 1 ).toString( 16 ) + " "; - } - - // Other potentially-special ASCII characters get backslash-escaped - return "\\" + ch; - }, - // Used for iframes // See setDocument() // Removing the function wrapper causes a "Permission Denied" // error in IE unloadHandler = function() { setDocument(); - }, - - disabledAncestor = addCombinator( - function( elem ) { - return elem.disabled === true && ("form" in elem || "label" in elem); - }, - { dir: "parentNode", next: "legend" } - ); + }; // Optimize for push.apply( _, NodeList ) try { @@ -713,128 +743,103 @@ try { } function Sizzle( selector, context, results, seed ) { - var m, i, elem, nid, match, groups, newSelector, - newContext = context && context.ownerDocument, + var match, elem, m, nodeType, + // QSA vars + i, groups, old, nid, newContext, newSelector; - // nodeType defaults to 9, since context defaults to document - nodeType = context ? context.nodeType : 9; + if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { + setDocument( context ); + } + context = context || document; results = results || []; + nodeType = context.nodeType; - // Return early from calls with invalid selector or context if ( typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11 ) { return results; } - // Try to shortcut find operations (as opposed to filters) in HTML documents - if ( !seed ) { - - if ( ( context ? context.ownerDocument || context : preferredDoc ) !== document ) { - setDocument( context ); - } - context = context || document; - - if ( documentIsHTML ) { - - // If the selector is sufficiently simple, try using a "get*By*" DOM method - // (excepting DocumentFragment context, where the methods don't exist) - if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { - - // ID selector - if ( (m = match[1]) ) { - - // Document context - if ( nodeType === 9 ) { - if ( (elem = context.getElementById( m )) ) { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( elem.id === m ) { - results.push( elem ); - return results; - } - } else { - return results; - } - - // Element context - } else { - - // Support: IE, Opera, Webkit - // TODO: identify versions - // getElementById can match elements by name instead of ID - if ( newContext && (elem = newContext.getElementById( m )) && - contains( context, elem ) && - elem.id === m ) { - + if ( !seed && documentIsHTML ) { + + // Try to shortcut find operations when possible (e.g., not under DocumentFragment) + if ( nodeType !== 11 && (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document (jQuery #6963) + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { results.push( elem ); return results; } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; } - - // Type selector - } else if ( match[2] ) { - push.apply( results, context.getElementsByTagName( selector ) ); - return results; - - // Class selector - } else if ( (m = match[3]) && support.getElementsByClassName && - context.getElementsByClassName ) { - - push.apply( results, context.getElementsByClassName( m ) ); - return results; } - } - // Take advantage of querySelectorAll - if ( support.qsa && - !compilerCache[ selector + " " ] && - (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, context.getElementsByTagName( selector ) ); + return results; - if ( nodeType !== 1 ) { - newContext = context; - newSelector = selector; + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && support.getElementsByClassName ) { + push.apply( results, context.getElementsByClassName( m ) ); + return results; + } + } - // qSA looks outside Element context, which is not what we want - // Thanks to Andrew Dupont for this workaround technique - // Support: IE <=8 - // Exclude object elements - } else if ( context.nodeName.toLowerCase() !== "object" ) { + // QSA path + if ( support.qsa && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + nid = old = expando; + newContext = context; + newSelector = nodeType !== 1 && selector; - // Capture the context ID, setting it first if necessary - if ( (nid = context.getAttribute( "id" )) ) { - nid = nid.replace( rcssescape, fcssescape ); - } else { - context.setAttribute( "id", (nid = expando) ); - } + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + if ( nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + groups = tokenize( selector ); - // Prefix every selector in the list - groups = tokenize( selector ); - i = groups.length; - while ( i-- ) { - groups[i] = "#" + nid + " " + toSelector( groups[i] ); - } - newSelector = groups.join( "," ); + if ( (old = context.getAttribute("id")) ) { + nid = old.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + nid = "[id='" + nid + "'] "; - // Expand context for sibling selectors - newContext = rsibling.test( selector ) && testContext( context.parentNode ) || - context; + i = groups.length; + while ( i-- ) { + groups[i] = nid + toSelector( groups[i] ); } + newContext = rsibling.test( selector ) && testContext( context.parentNode ) || context; + newSelector = groups.join(","); + } - if ( newSelector ) { - try { - push.apply( results, - newContext.querySelectorAll( newSelector ) - ); - return results; - } catch ( qsaError ) { - } finally { - if ( nid === expando ) { - context.removeAttribute( "id" ); - } + if ( newSelector ) { + try { + push.apply( results, + newContext.querySelectorAll( newSelector ) + ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); } } } @@ -847,7 +852,7 @@ function Sizzle( selector, context, results, seed ) { /** * Create key-value caches of limited size - * @returns {function(string, object)} Returns the Object data after storing it on itself with + * @returns {Function(string, Object)} Returns the Object data after storing it on itself with * property name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength) * deleting the oldest entry */ @@ -855,7 +860,7 @@ function createCache() { var keys = []; function cache( key, value ) { - // Use (key + " ") to avoid collision with native prototype property (see Issue #157) + // Use (key + " ") to avoid collision with native prototype properties (see Issue #157) if ( keys.push( key + " " ) > Expr.cacheLength ) { // Only keep the most recent entries delete cache[ keys.shift() ]; @@ -876,22 +881,22 @@ function markFunction( fn ) { /** * Support testing using an element - * @param {Function} fn Passed the created element and returns a boolean result + * @param {Function} fn Passed the created div and expects a boolean result */ function assert( fn ) { - var el = document.createElement("fieldset"); + var div = document.createElement("div"); try { - return !!fn( el ); + return !!fn( div ); } catch (e) { return false; } finally { // Remove from its parent by default - if ( el.parentNode ) { - el.parentNode.removeChild( el ); + if ( div.parentNode ) { + div.parentNode.removeChild( div ); } // release memory in IE - el = null; + div = null; } } @@ -902,7 +907,7 @@ function assert( fn ) { */ function addHandle( attrs, handler ) { var arr = attrs.split("|"), - i = arr.length; + i = attrs.length; while ( i-- ) { Expr.attrHandle[ arr[i] ] = handler; @@ -918,7 +923,8 @@ function addHandle( attrs, handler ) { function siblingCheck( a, b ) { var cur = b && a, diff = cur && a.nodeType === 1 && b.nodeType === 1 && - a.sourceIndex - b.sourceIndex; + ( ~b.sourceIndex || MAX_NEGATIVE ) - + ( ~a.sourceIndex || MAX_NEGATIVE ); // Use IE sourceIndex if available on both nodes if ( diff ) { @@ -959,62 +965,6 @@ function createButtonPseudo( type ) { }; } -/** - * Returns a function to use in pseudos for :enabled/:disabled - * @param {Boolean} disabled true for :disabled; false for :enabled - */ -function createDisabledPseudo( disabled ) { - - // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable - return function( elem ) { - - // Only certain elements can match :enabled or :disabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled - // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled - if ( "form" in elem ) { - - // Check for inherited disabledness on relevant non-disabled elements: - // * listed form-associated elements in a disabled fieldset - // https://html.spec.whatwg.org/multipage/forms.html#category-listed - // https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled - // * option elements in a disabled optgroup - // https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled - // All such elements have a "form" property. - if ( elem.parentNode && elem.disabled === false ) { - - // Option elements defer to a parent optgroup if present - if ( "label" in elem ) { - if ( "label" in elem.parentNode ) { - return elem.parentNode.disabled === disabled; - } else { - return elem.disabled === disabled; - } - } - - // Support: IE 6 - 11 - // Use the isDisabled shortcut property to check for disabled fieldset ancestors - return elem.isDisabled === disabled || - - // Where there is no isDisabled, check manually - /* jshint -W018 */ - elem.isDisabled !== !disabled && - disabledAncestor( elem ) === disabled; - } - - return elem.disabled === disabled; - - // Try to winnow out elements that can't be disabled before trusting the disabled property. - // Some victims get caught in our net (label, legend, menu, track), but it shouldn't - // even exist on them, let alone have a boolean value. - } else if ( "label" in elem ) { - return elem.disabled === disabled; - } - - // Remaining elements are neither :enabled nor :disabled - return false; - }; -} - /** * Returns a function to use in pseudos for positionals * @param {Function} fn @@ -1067,119 +1017,96 @@ isXML = Sizzle.isXML = function( elem ) { * @returns {Object} Returns the current document */ setDocument = Sizzle.setDocument = function( node ) { - var hasCompare, subWindow, + var hasCompare, parent, doc = node ? node.ownerDocument || node : preferredDoc; - // Return early if doc is invalid or already selected + // If no document and documentElement is available, return if ( doc === document || doc.nodeType !== 9 || !doc.documentElement ) { return document; } - // Update global variables + // Set our document document = doc; - docElem = document.documentElement; - documentIsHTML = !isXML( document ); - - // Support: IE 9-11, Edge - // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936) - if ( preferredDoc !== document && - (subWindow = document.defaultView) && subWindow.top !== subWindow ) { - - // Support: IE 11, Edge - if ( subWindow.addEventListener ) { - subWindow.addEventListener( "unload", unloadHandler, false ); + docElem = doc.documentElement; + parent = doc.defaultView; - // Support: IE 9 - 10 only - } else if ( subWindow.attachEvent ) { - subWindow.attachEvent( "onunload", unloadHandler ); + // Support: IE>8 + // If iframe document is assigned to "document" variable and if iframe has been reloaded, + // IE will throw "permission denied" error when accessing "document" variable, see jQuery #13936 + // IE6-8 do not support the defaultView property so parent will be undefined + if ( parent && parent !== parent.top ) { + // IE11 does not have attachEvent, so all must suffer + if ( parent.addEventListener ) { + parent.addEventListener( "unload", unloadHandler, false ); + } else if ( parent.attachEvent ) { + parent.attachEvent( "onunload", unloadHandler ); } } + /* Support tests + ---------------------------------------------------------------------- */ + documentIsHTML = !isXML( doc ); + /* Attributes ---------------------------------------------------------------------- */ // Support: IE<8 - // Verify that getAttribute really returns attributes and not property + // Verify that getAttribute really returns attributes and not properties // (excepting IE8 booleans) - support.attributes = assert(function( el ) { - el.className = "i"; - return !el.getAttribute("className"); + support.attributes = assert(function( div ) { + div.className = "i"; + return !div.getAttribute("className"); }); /* getElement(s)By* ---------------------------------------------------------------------- */ // Check if getElementsByTagName("*") returns only elements - support.getElementsByTagName = assert(function( el ) { - el.appendChild( document.createComment("") ); - return !el.getElementsByTagName("*").length; + support.getElementsByTagName = assert(function( div ) { + div.appendChild( doc.createComment("") ); + return !div.getElementsByTagName("*").length; }); // Support: IE<9 - support.getElementsByClassName = rnative.test( document.getElementsByClassName ); + support.getElementsByClassName = rnative.test( doc.getElementsByClassName ); // Support: IE<10 // Check if getElementById returns elements by name - // The broken getElementById methods don't pick up programmatically-set names, + // The broken getElementById methods don't pick up programatically-set names, // so use a roundabout getElementsByName test - support.getById = assert(function( el ) { - docElem.appendChild( el ).id = expando; - return !document.getElementsByName || !document.getElementsByName( expando ).length; + support.getById = assert(function( div ) { + docElem.appendChild( div ).id = expando; + return !doc.getElementsByName || !doc.getElementsByName( expando ).length; }); - // ID filter and find + // ID find and filter if ( support.getById ) { + Expr.find["ID"] = function( id, context ) { + if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [ m ] : []; + } + }; Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { return elem.getAttribute("id") === attrId; }; }; - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var elem = context.getElementById( id ); - return elem ? [ elem ] : []; - } - }; } else { + // Support: IE6/7 + // getElementById is not reliable as a find shortcut + delete Expr.find["ID"]; + Expr.filter["ID"] = function( id ) { var attrId = id.replace( runescape, funescape ); return function( elem ) { - var node = typeof elem.getAttributeNode !== "undefined" && - elem.getAttributeNode("id"); + var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id"); return node && node.value === attrId; }; }; - - // Support: IE 6 - 7 only - // getElementById is not reliable as a find shortcut - Expr.find["ID"] = function( id, context ) { - if ( typeof context.getElementById !== "undefined" && documentIsHTML ) { - var node, i, elems, - elem = context.getElementById( id ); - - if ( elem ) { - - // Verify the id attribute - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - - // Fall back on getElementsByName - elems = context.getElementsByName( id ); - i = 0; - while ( (elem = elems[i++]) ) { - node = elem.getAttributeNode("id"); - if ( node && node.value === id ) { - return [ elem ]; - } - } - } - - return []; - } - }; } // Tag @@ -1216,7 +1143,7 @@ setDocument = Sizzle.setDocument = function( node ) { // Class Expr.find["CLASS"] = support.getElementsByClassName && function( className, context ) { - if ( typeof context.getElementsByClassName !== "undefined" && documentIsHTML ) { + if ( documentIsHTML ) { return context.getElementsByClassName( className ); } }; @@ -1233,87 +1160,77 @@ setDocument = Sizzle.setDocument = function( node ) { // We allow this because of a bug in IE8/9 that throws an error // whenever `document.activeElement` is accessed on an iframe // So, we allow :focus to pass through QSA all the time to avoid the IE error - // See https://bugs.jquery.com/ticket/13378 + // See http://bugs.jquery.com/ticket/13378 rbuggyQSA = []; - if ( (support.qsa = rnative.test( document.querySelectorAll )) ) { + if ( (support.qsa = rnative.test( doc.querySelectorAll )) ) { // Build QSA regex // Regex strategy adopted from Diego Perini - assert(function( el ) { + assert(function( div ) { // Select is set to empty string on purpose // This is to test IE's treatment of not explicitly // setting a boolean content attribute, // since its presence should be enough - // https://bugs.jquery.com/ticket/12359 - docElem.appendChild( el ).innerHTML = "" + - "" + ""; // Support: IE8, Opera 11-12.16 // Nothing should be selected when empty strings follow ^= or $= or *= // The test attribute must be unknown in Opera but "safe" for WinRT - // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section - if ( el.querySelectorAll("[msallowcapture^='']").length ) { + // http://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section + if ( div.querySelectorAll("[msallowcapture^='']").length ) { rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:''|\"\")" ); } // Support: IE8 // Boolean attributes and "value" are not treated correctly - if ( !el.querySelectorAll("[selected]").length ) { + if ( !div.querySelectorAll("[selected]").length ) { rbuggyQSA.push( "\\[" + whitespace + "*(?:value|" + booleans + ")" ); } - // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+ - if ( !el.querySelectorAll( "[id~=" + expando + "-]" ).length ) { + // Support: Chrome<29, Android<4.2+, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.7+ + if ( !div.querySelectorAll( "[id~=" + expando + "-]" ).length ) { rbuggyQSA.push("~="); } // Webkit/Opera - :checked should return selected option elements // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked // IE8 throws error here and will not see later tests - if ( !el.querySelectorAll(":checked").length ) { + if ( !div.querySelectorAll(":checked").length ) { rbuggyQSA.push(":checked"); } // Support: Safari 8+, iOS 8+ // https://bugs.webkit.org/show_bug.cgi?id=136851 - // In-page `selector#id sibling-combinator selector` fails - if ( !el.querySelectorAll( "a#" + expando + "+*" ).length ) { + // In-page `selector#id sibing-combinator selector` fails + if ( !div.querySelectorAll( "a#" + expando + "+*" ).length ) { rbuggyQSA.push(".#.+[+~]"); } }); - assert(function( el ) { - el.innerHTML = "" + - ""; - + assert(function( div ) { // Support: Windows 8 Native Apps // The type and name attributes are restricted during .innerHTML assignment - var input = document.createElement("input"); + var input = doc.createElement("input"); input.setAttribute( "type", "hidden" ); - el.appendChild( input ).setAttribute( "name", "D" ); + div.appendChild( input ).setAttribute( "name", "D" ); // Support: IE8 // Enforce case-sensitivity of name attribute - if ( el.querySelectorAll("[name=d]").length ) { + if ( div.querySelectorAll("[name=d]").length ) { rbuggyQSA.push( "name" + whitespace + "*[*^$|!~]?=" ); } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) // IE8 throws error here and will not see later tests - if ( el.querySelectorAll(":enabled").length !== 2 ) { - rbuggyQSA.push( ":enabled", ":disabled" ); - } - - // Support: IE9-11+ - // IE's :disabled selector does not pick up the children of disabled fieldsets - docElem.appendChild( el ).disabled = true; - if ( el.querySelectorAll(":disabled").length !== 2 ) { + if ( !div.querySelectorAll(":enabled").length ) { rbuggyQSA.push( ":enabled", ":disabled" ); } // Opera 10-11 does not throw on post-comma invalid pseudos - el.querySelectorAll("*,:x"); + div.querySelectorAll("*,:x"); rbuggyQSA.push(",.*:"); }); } @@ -1324,14 +1241,14 @@ setDocument = Sizzle.setDocument = function( node ) { docElem.oMatchesSelector || docElem.msMatchesSelector) )) ) { - assert(function( el ) { + assert(function( div ) { // Check to see if it's possible to do matchesSelector // on a disconnected node (IE 9) - support.disconnectedMatch = matches.call( el, "*" ); + support.disconnectedMatch = matches.call( div, "div" ); // This should fail with an exception // Gecko does not error, returns false instead - matches.call( el, "[s!='']:x" ); + matches.call( div, "[s!='']:x" ); rbuggyMatches.push( "!=", pseudos ); }); } @@ -1344,7 +1261,7 @@ setDocument = Sizzle.setDocument = function( node ) { hasCompare = rnative.test( docElem.compareDocumentPosition ); // Element contains another - // Purposefully self-exclusive + // Purposefully does not implement inclusive descendent // As in, an element does not contain itself contains = hasCompare || rnative.test( docElem.contains ) ? function( a, b ) { @@ -1398,10 +1315,10 @@ setDocument = Sizzle.setDocument = function( node ) { (!support.sortDetached && b.compareDocumentPosition( a ) === compare) ) { // Choose the first element that is related to our preferred document - if ( a === document || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { + if ( a === doc || a.ownerDocument === preferredDoc && contains(preferredDoc, a) ) { return -1; } - if ( b === document || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { + if ( b === doc || b.ownerDocument === preferredDoc && contains(preferredDoc, b) ) { return 1; } @@ -1429,8 +1346,8 @@ setDocument = Sizzle.setDocument = function( node ) { // Parentless nodes are either documents or disconnected if ( !aup || !bup ) { - return a === document ? -1 : - b === document ? 1 : + return a === doc ? -1 : + b === doc ? 1 : aup ? -1 : bup ? 1 : sortInput ? @@ -1467,7 +1384,7 @@ setDocument = Sizzle.setDocument = function( node ) { 0; }; - return document; + return doc; }; Sizzle.matches = function( expr, elements ) { @@ -1484,7 +1401,6 @@ Sizzle.matchesSelector = function( elem, expr ) { expr = expr.replace( rattributeQuotes, "='$1']" ); if ( support.matchesSelector && documentIsHTML && - !compilerCache[ expr + " " ] && ( !rbuggyMatches || !rbuggyMatches.test( expr ) ) && ( !rbuggyQSA || !rbuggyQSA.test( expr ) ) ) { @@ -1519,7 +1435,7 @@ Sizzle.attr = function( elem, name ) { } var fn = Expr.attrHandle[ name.toLowerCase() ], - // Don't get fooled by Object.prototype property (jQuery #13807) + // Don't get fooled by Object.prototype properties (jQuery #13807) val = fn && hasOwn.call( Expr.attrHandle, name.toLowerCase() ) ? fn( elem, name, !documentIsHTML ) : undefined; @@ -1533,10 +1449,6 @@ Sizzle.attr = function( elem, name ) { null; }; -Sizzle.escape = function( sel ) { - return (sel + "").replace( rcssescape, fcssescape ); -}; - Sizzle.error = function( msg ) { throw new Error( "Syntax error, unrecognized expression: " + msg ); }; @@ -1762,12 +1674,11 @@ Expr = Sizzle.selectors = { } : function( elem, context, xml ) { - var cache, uniqueCache, outerCache, node, nodeIndex, start, + var cache, outerCache, node, diff, nodeIndex, start, dir = simple !== forward ? "nextSibling" : "previousSibling", parent = elem.parentNode, name = ofType && elem.nodeName.toLowerCase(), - useCache = !xml && !ofType, - diff = false; + useCache = !xml && !ofType; if ( parent ) { @@ -1776,10 +1687,7 @@ Expr = Sizzle.selectors = { while ( dir ) { node = elem; while ( (node = node[ dir ]) ) { - if ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) { - + if ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) { return false; } } @@ -1793,21 +1701,11 @@ Expr = Sizzle.selectors = { // non-xml :nth-child(...) stores cache data on `parent` if ( forward && useCache ) { - // Seek `elem` from a previously-cached index - - // ...in a gzip-friendly way - node = parent; - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex && cache[ 2 ]; + outerCache = parent[ expando ] || (parent[ expando ] = {}); + cache = outerCache[ type ] || []; + nodeIndex = cache[0] === dirruns && cache[1]; + diff = cache[0] === dirruns && cache[2]; node = nodeIndex && parent.childNodes[ nodeIndex ]; while ( (node = ++nodeIndex && node && node[ dir ] || @@ -1817,55 +1715,29 @@ Expr = Sizzle.selectors = { // When found, cache indexes on `parent` and break if ( node.nodeType === 1 && ++diff && node === elem ) { - uniqueCache[ type ] = [ dirruns, nodeIndex, diff ]; + outerCache[ type ] = [ dirruns, nodeIndex, diff ]; break; } } - } else { - // Use previously-cached element index if available - if ( useCache ) { - // ...in a gzip-friendly way - node = elem; - outerCache = node[ expando ] || (node[ expando ] = {}); + // Use previously-cached element index if available + } else if ( useCache && (cache = (elem[ expando ] || (elem[ expando ] = {}))[ type ]) && cache[0] === dirruns ) { + diff = cache[1]; - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); + // xml :nth-child(...) or :nth-last-child(...) or :nth(-last)?-of-type(...) + } else { + // Use the same loop as above to seek `elem` from the start + while ( (node = ++nodeIndex && node && node[ dir ] || + (diff = nodeIndex = 0) || start.pop()) ) { - cache = uniqueCache[ type ] || []; - nodeIndex = cache[ 0 ] === dirruns && cache[ 1 ]; - diff = nodeIndex; - } + if ( ( ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1 ) && ++diff ) { + // Cache the index of each encountered element + if ( useCache ) { + (node[ expando ] || (node[ expando ] = {}))[ type ] = [ dirruns, diff ]; + } - // xml :nth-child(...) - // or :nth-last-child(...) or :nth(-last)?-of-type(...) - if ( diff === false ) { - // Use the same loop as above to seek `elem` from the start - while ( (node = ++nodeIndex && node && node[ dir ] || - (diff = nodeIndex = 0) || start.pop()) ) { - - if ( ( ofType ? - node.nodeName.toLowerCase() === name : - node.nodeType === 1 ) && - ++diff ) { - - // Cache the index of each encountered element - if ( useCache ) { - outerCache = node[ expando ] || (node[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ node.uniqueID ] || - (outerCache[ node.uniqueID ] = {}); - - uniqueCache[ type ] = [ dirruns, diff ]; - } - - if ( node === elem ) { - break; - } + if ( node === elem ) { + break; } } } @@ -2003,9 +1875,14 @@ Expr = Sizzle.selectors = { return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex); }, - // Boolean property - "enabled": createDisabledPseudo( false ), - "disabled": createDisabledPseudo( true ), + // Boolean properties + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, "checked": function( elem ) { // In CSS3, :checked should return both checked and selected elements @@ -2207,9 +2084,7 @@ function toSelector( tokens ) { function addCombinator( matcher, combinator, base ) { var dir = combinator.dir, - skip = combinator.next, - key = skip || dir, - checkNonElements = base && key === "parentNode", + checkNonElements = base && dir === "parentNode", doneName = done++; return combinator.first ? @@ -2220,15 +2095,14 @@ function addCombinator( matcher, combinator, base ) { return matcher( elem, context, xml ); } } - return false; } : // Check against all ancestor/preceding elements function( elem, context, xml ) { - var oldCache, uniqueCache, outerCache, + var oldCache, outerCache, newCache = [ dirruns, doneName ]; - // We can't set arbitrary data on XML nodes, so they don't benefit from combinator caching + // We can't set arbitrary data on XML nodes, so they don't benefit from dir caching if ( xml ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { @@ -2241,21 +2115,14 @@ function addCombinator( matcher, combinator, base ) { while ( (elem = elem[ dir ]) ) { if ( elem.nodeType === 1 || checkNonElements ) { outerCache = elem[ expando ] || (elem[ expando ] = {}); - - // Support: IE <9 only - // Defend against cloned attroperties (jQuery gh-1709) - uniqueCache = outerCache[ elem.uniqueID ] || (outerCache[ elem.uniqueID ] = {}); - - if ( skip && skip === elem.nodeName.toLowerCase() ) { - elem = elem[ dir ] || elem; - } else if ( (oldCache = uniqueCache[ key ]) && + if ( (oldCache = outerCache[ dir ]) && oldCache[ 0 ] === dirruns && oldCache[ 1 ] === doneName ) { // Assign to newCache so results back-propagate to previous elements return (newCache[ 2 ] = oldCache[ 2 ]); } else { // Reuse newcache so results back-propagate to previous elements - uniqueCache[ key ] = newCache; + outerCache[ dir ] = newCache; // A match means we're done; a fail means we have to keep checking if ( (newCache[ 2 ] = matcher( elem, context, xml )) ) { @@ -2265,7 +2132,6 @@ function addCombinator( matcher, combinator, base ) { } } } - return false; }; } @@ -2481,21 +2347,18 @@ function matcherFromGroupMatchers( elementMatchers, setMatchers ) { len = elems.length; if ( outermost ) { - outermostContext = context === document || context || outermost; + outermostContext = context !== document && context; } // Add elements passing elementMatchers directly to results + // Keep `i` a string if there are no elements so `matchedCount` will be "00" below // Support: IE<9, Safari - // Tolerate NodeList property (IE: "length"; Safari: ) matching elements by id + // Tolerate NodeList properties (IE: "length"; Safari: ) matching elements by id for ( ; i !== len && (elem = elems[i]) != null; i++ ) { if ( byElement && elem ) { j = 0; - if ( !context && elem.ownerDocument !== document ) { - setDocument( elem ); - xml = !documentIsHTML; - } while ( (matcher = elementMatchers[j++]) ) { - if ( matcher( elem, context || document, xml) ) { + if ( matcher( elem, context, xml ) ) { results.push( elem ); break; } @@ -2519,17 +2382,8 @@ function matcherFromGroupMatchers( elementMatchers, setMatchers ) { } } - // `i` is now the count of elements visited above, and adding it to `matchedCount` - // makes the latter nonnegative. - matchedCount += i; - // Apply set filters to unmatched elements - // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount` - // equals `i`), unless we didn't visit _any_ elements in the above loop because we have - // no element matchers and no seed. - // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that - // case, which will result in a "00" `matchedCount` that differs from `i` but is also - // numerically zero. + matchedCount += i; if ( bySet && i !== matchedCount ) { j = 0; while ( (matcher = setMatchers[j++]) ) { @@ -2621,14 +2475,14 @@ select = Sizzle.select = function( selector, context, results, seed ) { results = results || []; - // Try to minimize operations if there is only one selector in the list and no seed - // (the latter of which guarantees us context) + // Try to minimize operations if there is no seed and only one group if ( match.length === 1 ) { - // Reduce context if the leading compound selector is an ID + // Take a shortcut and set the context if the root selector is an ID tokens = match[0] = match[0].slice( 0 ); if ( tokens.length > 2 && (token = tokens[0]).type === "ID" && - context.nodeType === 9 && documentIsHTML && Expr.relative[ tokens[1].type ] ) { + support.getById && context.nodeType === 9 && documentIsHTML && + Expr.relative[ tokens[1].type ] ) { context = ( Expr.find["ID"]( token.matches[0].replace(runescape, funescape), context ) || [] )[0]; if ( !context ) { @@ -2679,7 +2533,7 @@ select = Sizzle.select = function( selector, context, results, seed ) { context, !documentIsHTML, results, - !context || rsibling.test( selector ) && testContext( context.parentNode ) || context + rsibling.test( selector ) && testContext( context.parentNode ) || context ); return results; }; @@ -2698,17 +2552,17 @@ setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27) // Detached nodes confoundingly follow *each other* -support.sortDetached = assert(function( el ) { +support.sortDetached = assert(function( div1 ) { // Should return 1, but returns 4 (following) - return el.compareDocumentPosition( document.createElement("fieldset") ) & 1; + return div1.compareDocumentPosition( document.createElement("div") ) & 1; }); // Support: IE<8 // Prevent attribute/property "interpolation" -// https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx -if ( !assert(function( el ) { - el.innerHTML = ""; - return el.firstChild.getAttribute("href") === "#" ; +// http://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx +if ( !assert(function( div ) { + div.innerHTML = ""; + return div.firstChild.getAttribute("href") === "#" ; }) ) { addHandle( "type|href|height|width", function( elem, name, isXML ) { if ( !isXML ) { @@ -2719,10 +2573,10 @@ if ( !assert(function( el ) { // Support: IE<9 // Use defaultValue in place of getAttribute("value") -if ( !support.attributes || !assert(function( el ) { - el.innerHTML = ""; - el.firstChild.setAttribute( "value", "" ); - return el.firstChild.getAttribute( "value" ) === ""; +if ( !support.attributes || !assert(function( div ) { + div.innerHTML = ""; + div.firstChild.setAttribute( "value", "" ); + return div.firstChild.getAttribute( "value" ) === ""; }) ) { addHandle( "value", function( elem, name, isXML ) { if ( !isXML && elem.nodeName.toLowerCase() === "input" ) { @@ -2733,8 +2587,8 @@ if ( !support.attributes || !assert(function( el ) { // Support: IE<9 // Use getAttributeNode to fetch booleans when getAttribute lies -if ( !assert(function( el ) { - return el.getAttribute("disabled") == null; +if ( !assert(function( div ) { + return div.getAttribute("disabled") == null; }) ) { addHandle( booleans, function( elem, name, isXML ) { var val; @@ -2755,84 +2609,50 @@ return Sizzle; jQuery.find = Sizzle; jQuery.expr = Sizzle.selectors; - -// Deprecated -jQuery.expr[ ":" ] = jQuery.expr.pseudos; -jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; jQuery.text = Sizzle.getText; jQuery.isXMLDoc = Sizzle.isXML; jQuery.contains = Sizzle.contains; -jQuery.escapeSelector = Sizzle.escape; +var rneedsContext = jQuery.expr.match.needsContext; -var dir = function( elem, dir, until ) { - var matched = [], - truncate = until !== undefined; +var rsingleTag = (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); - while ( ( elem = elem[ dir ] ) && elem.nodeType !== 9 ) { - if ( elem.nodeType === 1 ) { - if ( truncate && jQuery( elem ).is( until ) ) { - break; - } - matched.push( elem ); - } - } - return matched; -}; - - -var siblings = function( n, elem ) { - var matched = []; - - for ( ; n; n = n.nextSibling ) { - if ( n.nodeType === 1 && n !== elem ) { - matched.push( n ); - } - } - - return matched; -}; - - -var rneedsContext = jQuery.expr.match.needsContext; - - - -function nodeName( elem, name ) { - - return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase(); - -}; -var rsingleTag = ( /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i ); +var risSimple = /^.[^:#\[\.,]*$/; // Implement the identical functionality for filter and not function winnow( elements, qualifier, not ) { - if ( isFunction( qualifier ) ) { + if ( jQuery.isFunction( qualifier ) ) { return jQuery.grep( elements, function( elem, i ) { + /* jshint -W018 */ return !!qualifier.call( elem, i, elem ) !== not; - } ); + }); + } - // Single element if ( qualifier.nodeType ) { return jQuery.grep( elements, function( elem ) { return ( elem === qualifier ) !== not; - } ); + }); + } - // Arraylike of elements (jQuery, arguments, Array) - if ( typeof qualifier !== "string" ) { - return jQuery.grep( elements, function( elem ) { - return ( indexOf.call( qualifier, elem ) > -1 ) !== not; - } ); + if ( typeof qualifier === "string" ) { + if ( risSimple.test( qualifier ) ) { + return jQuery.filter( qualifier, elements, not ); + } + + qualifier = jQuery.filter( qualifier, elements ); } - // Filtered directly for both simple and complex selectors - return jQuery.filter( qualifier, elements, not ); + return jQuery.grep( elements, function( elem ) { + return ( indexOf.call( qualifier, elem ) >= 0 ) !== not; + }); } jQuery.filter = function( expr, elems, not ) { @@ -2842,44 +2662,44 @@ jQuery.filter = function( expr, elems, not ) { expr = ":not(" + expr + ")"; } - if ( elems.length === 1 && elem.nodeType === 1 ) { - return jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : []; - } - - return jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { - return elem.nodeType === 1; - } ) ); + return elems.length === 1 && elem.nodeType === 1 ? + jQuery.find.matchesSelector( elem, expr ) ? [ elem ] : [] : + jQuery.find.matches( expr, jQuery.grep( elems, function( elem ) { + return elem.nodeType === 1; + })); }; -jQuery.fn.extend( { +jQuery.fn.extend({ find: function( selector ) { - var i, ret, + var i, len = this.length, + ret = [], self = this; if ( typeof selector !== "string" ) { - return this.pushStack( jQuery( selector ).filter( function() { + return this.pushStack( jQuery( selector ).filter(function() { for ( i = 0; i < len; i++ ) { if ( jQuery.contains( self[ i ], this ) ) { return true; } } - } ) ); + }) ); } - ret = this.pushStack( [] ); - for ( i = 0; i < len; i++ ) { jQuery.find( selector, self[ i ], ret ); } - return len > 1 ? jQuery.uniqueSort( ret ) : ret; + // Needed because $( selector, context ) becomes $( context ).find( selector ) + ret = this.pushStack( len > 1 ? jQuery.unique( ret ) : ret ); + ret.selector = this.selector ? this.selector + " " + selector : selector; + return ret; }, filter: function( selector ) { - return this.pushStack( winnow( this, selector || [], false ) ); + return this.pushStack( winnow(this, selector || [], false) ); }, not: function( selector ) { - return this.pushStack( winnow( this, selector || [], true ) ); + return this.pushStack( winnow(this, selector || [], true) ); }, is: function( selector ) { return !!winnow( @@ -2893,7 +2713,7 @@ jQuery.fn.extend( { false ).length; } -} ); +}); // Initialize a jQuery object @@ -2905,10 +2725,9 @@ var rootjQuery, // A simple way to check for HTML strings // Prioritize #id over to avoid XSS via location.hash (#9521) // Strict HTML recognition (#11290: must start with <) - // Shortcut simple #id case for speed - rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, + rquickExpr = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]*))$/, - init = jQuery.fn.init = function( selector, context, root ) { + init = jQuery.fn.init = function( selector, context ) { var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false) @@ -2916,16 +2735,9 @@ var rootjQuery, return this; } - // Method init() accepts an alternate rootjQuery - // so migrate can support jQuery.sub (gh-2101) - root = root || rootjQuery; - // Handle HTML strings if ( typeof selector === "string" ) { - if ( selector[ 0 ] === "<" && - selector[ selector.length - 1 ] === ">" && - selector.length >= 3 ) { - + if ( selector[0] === "<" && selector[ selector.length - 1 ] === ">" && selector.length >= 3 ) { // Assume that strings that start and end with <> are HTML and skip the regex check match = [ null, selector, null ]; @@ -2934,26 +2746,25 @@ var rootjQuery, } // Match html or make sure no context is specified for #id - if ( match && ( match[ 1 ] || !context ) ) { + if ( match && (match[1] || !context) ) { // HANDLE: $(html) -> $(array) - if ( match[ 1 ] ) { - context = context instanceof jQuery ? context[ 0 ] : context; + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; // Option to run scripts is true for back-compat // Intentionally let the error be thrown if parseHTML is not present jQuery.merge( this, jQuery.parseHTML( - match[ 1 ], + match[1], context && context.nodeType ? context.ownerDocument || context : document, true ) ); // HANDLE: $(html, props) - if ( rsingleTag.test( match[ 1 ] ) && jQuery.isPlainObject( context ) ) { + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { for ( match in context ) { - // Properties of context are called as methods if possible - if ( isFunction( this[ match ] ) ) { + if ( jQuery.isFunction( this[ match ] ) ) { this[ match ]( context[ match ] ); // ...and otherwise set as attributes @@ -2967,20 +2778,24 @@ var rootjQuery, // HANDLE: $(#id) } else { - elem = document.getElementById( match[ 2 ] ); - - if ( elem ) { + elem = document.getElementById( match[2] ); + // Support: Blackberry 4.6 + // gEBID returns nodes no longer in the document (#6963) + if ( elem && elem.parentNode ) { // Inject the element directly into the jQuery object - this[ 0 ] = elem; this.length = 1; + this[0] = elem; } + + this.context = document; + this.selector = selector; return this; } // HANDLE: $(expr, $(...)) } else if ( !context || context.jquery ) { - return ( context || root ).find( selector ); + return ( context || rootjQuery ).find( selector ); // HANDLE: $(expr, context) // (which is just equivalent to: $(context).find(expr) @@ -2990,20 +2805,24 @@ var rootjQuery, // HANDLE: $(DOMElement) } else if ( selector.nodeType ) { - this[ 0 ] = selector; + this.context = this[0] = selector; this.length = 1; return this; // HANDLE: $(function) // Shortcut for document ready - } else if ( isFunction( selector ) ) { - return root.ready !== undefined ? - root.ready( selector ) : - + } else if ( jQuery.isFunction( selector ) ) { + return typeof rootjQuery.ready !== "undefined" ? + rootjQuery.ready( selector ) : // Execute immediately if ready is not present selector( jQuery ); } + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + return jQuery.makeArray( selector, this ); }; @@ -3015,7 +2834,6 @@ rootjQuery = jQuery( document ); var rparentsprev = /^(?:parents|prev(?:Until|All))/, - // Methods guaranteed to produce a unique set when starting from a unique set guaranteedUnique = { children: true, @@ -3024,19 +2842,48 @@ var rparentsprev = /^(?:parents|prev(?:Until|All))/, prev: true }; -jQuery.fn.extend( { +jQuery.extend({ + dir: function( elem, dir, until ) { + var matched = [], + truncate = until !== undefined; + + while ( (elem = elem[ dir ]) && elem.nodeType !== 9 ) { + if ( elem.nodeType === 1 ) { + if ( truncate && jQuery( elem ).is( until ) ) { + break; + } + matched.push( elem ); + } + } + return matched; + }, + + sibling: function( n, elem ) { + var matched = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + matched.push( n ); + } + } + + return matched; + } +}); + +jQuery.fn.extend({ has: function( target ) { var targets = jQuery( target, this ), l = targets.length; - return this.filter( function() { + return this.filter(function() { var i = 0; for ( ; i < l; i++ ) { - if ( jQuery.contains( this, targets[ i ] ) ) { + if ( jQuery.contains( this, targets[i] ) ) { return true; } } - } ); + }); }, closest: function( selectors, context ) { @@ -3044,29 +2891,27 @@ jQuery.fn.extend( { i = 0, l = this.length, matched = [], - targets = typeof selectors !== "string" && jQuery( selectors ); - - // Positional selectors never match, since there's no _selection_ context - if ( !rneedsContext.test( selectors ) ) { - for ( ; i < l; i++ ) { - for ( cur = this[ i ]; cur && cur !== context; cur = cur.parentNode ) { + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; - // Always skip document fragments - if ( cur.nodeType < 11 && ( targets ? - targets.index( cur ) > -1 : + for ( ; i < l; i++ ) { + for ( cur = this[i]; cur && cur !== context; cur = cur.parentNode ) { + // Always skip document fragments + if ( cur.nodeType < 11 && (pos ? + pos.index(cur) > -1 : - // Don't pass non-elements to Sizzle - cur.nodeType === 1 && - jQuery.find.matchesSelector( cur, selectors ) ) ) { + // Don't pass non-elements to Sizzle + cur.nodeType === 1 && + jQuery.find.matchesSelector(cur, selectors)) ) { - matched.push( cur ); - break; - } + matched.push( cur ); + break; } } } - return this.pushStack( matched.length > 1 ? jQuery.uniqueSort( matched ) : matched ); + return this.pushStack( matched.length > 1 ? jQuery.unique( matched ) : matched ); }, // Determine the position of an element within the set @@ -3092,7 +2937,7 @@ jQuery.fn.extend( { add: function( selector, context ) { return this.pushStack( - jQuery.uniqueSort( + jQuery.unique( jQuery.merge( this.get(), jQuery( selector, context ) ) ) ); @@ -3100,26 +2945,26 @@ jQuery.fn.extend( { addBack: function( selector ) { return this.add( selector == null ? - this.prevObject : this.prevObject.filter( selector ) + this.prevObject : this.prevObject.filter(selector) ); } -} ); +}); function sibling( cur, dir ) { - while ( ( cur = cur[ dir ] ) && cur.nodeType !== 1 ) {} + while ( (cur = cur[dir]) && cur.nodeType !== 1 ) {} return cur; } -jQuery.each( { +jQuery.each({ parent: function( elem ) { var parent = elem.parentNode; return parent && parent.nodeType !== 11 ? parent : null; }, parents: function( elem ) { - return dir( elem, "parentNode" ); + return jQuery.dir( elem, "parentNode" ); }, parentsUntil: function( elem, i, until ) { - return dir( elem, "parentNode", until ); + return jQuery.dir( elem, "parentNode", until ); }, next: function( elem ) { return sibling( elem, "nextSibling" ); @@ -3128,36 +2973,25 @@ jQuery.each( { return sibling( elem, "previousSibling" ); }, nextAll: function( elem ) { - return dir( elem, "nextSibling" ); + return jQuery.dir( elem, "nextSibling" ); }, prevAll: function( elem ) { - return dir( elem, "previousSibling" ); + return jQuery.dir( elem, "previousSibling" ); }, nextUntil: function( elem, i, until ) { - return dir( elem, "nextSibling", until ); + return jQuery.dir( elem, "nextSibling", until ); }, prevUntil: function( elem, i, until ) { - return dir( elem, "previousSibling", until ); + return jQuery.dir( elem, "previousSibling", until ); }, siblings: function( elem ) { - return siblings( ( elem.parentNode || {} ).firstChild, elem ); + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); }, children: function( elem ) { - return siblings( elem.firstChild ); + return jQuery.sibling( elem.firstChild ); }, contents: function( elem ) { - if ( nodeName( elem, "iframe" ) ) { - return elem.contentDocument; - } - - // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only - // Treat the template element as a regular one in browsers that - // don't support it. - if ( nodeName( elem, "template" ) ) { - elem = elem.content || elem; - } - - return jQuery.merge( [], elem.childNodes ); + return elem.contentDocument || jQuery.merge( [], elem.childNodes ); } }, function( name, fn ) { jQuery.fn[ name ] = function( until, selector ) { @@ -3172,10 +3006,9 @@ jQuery.each( { } if ( this.length > 1 ) { - // Remove duplicates if ( !guaranteedUnique[ name ] ) { - jQuery.uniqueSort( matched ); + jQuery.unique( matched ); } // Reverse order for parents* and prev-derivatives @@ -3186,17 +3019,20 @@ jQuery.each( { return this.pushStack( matched ); }; -} ); -var rnothtmlwhite = ( /[^\x20\t\r\n\f]+/g ); +}); +var rnotwhite = (/\S+/g); -// Convert String-formatted options into Object-formatted ones +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache function createOptions( options ) { - var object = {}; - jQuery.each( options.match( rnothtmlwhite ) || [], function( _, flag ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.match( rnotwhite ) || [], function( _, flag ) { object[ flag ] = true; - } ); + }); return object; } @@ -3227,186 +3063,156 @@ jQuery.Callbacks = function( options ) { // Convert options from String-formatted to Object-formatted if needed // (we check in cache first) options = typeof options === "string" ? - createOptions( options ) : + ( optionsCache[ options ] || createOptions( options ) ) : jQuery.extend( {}, options ); - var // Flag to know if list is currently firing - firing, - - // Last fire value for non-forgettable lists + var // Last fire value (for non-forgettable lists) memory, - // Flag to know if list was already fired fired, - - // Flag to prevent firing - locked, - + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, // Actual callback list list = [], - - // Queue of execution data for repeatable lists - queue = [], - - // Index of currently firing callback (modified by add/remove as needed) - firingIndex = -1, - + // Stack of fire calls for repeatable lists + stack = !options.once && [], // Fire callbacks - fire = function() { - - // Enforce single-firing - locked = locked || options.once; - - // Execute callbacks for all pending executions, - // respecting firingIndex overrides and runtime changes - fired = firing = true; - for ( ; queue.length; firingIndex = -1 ) { - memory = queue.shift(); - while ( ++firingIndex < list.length ) { - - // Run callback and check for early termination - if ( list[ firingIndex ].apply( memory[ 0 ], memory[ 1 ] ) === false && - options.stopOnFalse ) { - - // Jump to end and forget the data so .add doesn't re-fire - firingIndex = list.length; - memory = false; - } + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; } } - - // Forget the data if we're done with it - if ( !options.memory ) { - memory = false; - } - firing = false; - - // Clean up if we're done firing for good - if ( locked ) { - - // Keep an empty list if we have data for future add calls - if ( memory ) { + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { list = []; - - // Otherwise, this object is spent } else { - list = ""; + self.disable(); } } }, - // Actual Callbacks object self = { - // Add a callback or a collection of callbacks to the list add: function() { if ( list ) { - - // If we have memory from a past run, we should fire after adding - if ( memory && !firing ) { - firingIndex = list.length - 1; - queue.push( memory ); - } - - ( function add( args ) { + // First, we save the current length + var start = list.length; + (function add( args ) { jQuery.each( args, function( _, arg ) { - if ( isFunction( arg ) ) { + var type = jQuery.type( arg ); + if ( type === "function" ) { if ( !options.unique || !self.has( arg ) ) { list.push( arg ); } - } else if ( arg && arg.length && toType( arg ) !== "string" ) { - + } else if ( arg && arg.length && type !== "string" ) { // Inspect recursively add( arg ); } - } ); - } )( arguments ); - - if ( memory && !firing ) { - fire(); + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); } } return this; }, - // Remove a callback from the list remove: function() { - jQuery.each( arguments, function( _, arg ) { - var index; - while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { - list.splice( index, 1 ); - - // Handle firing indexes - if ( index <= firingIndex ) { - firingIndex--; + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while ( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } } - } - } ); + }); + } return this; }, - // Check if a given callback is in the list. // If no argument is given, return whether or not list has callbacks attached. has: function( fn ) { - return fn ? - jQuery.inArray( fn, list ) > -1 : - list.length > 0; + return fn ? jQuery.inArray( fn, list ) > -1 : !!( list && list.length ); }, - // Remove all callbacks from the list empty: function() { - if ( list ) { - list = []; - } + list = []; + firingLength = 0; return this; }, - - // Disable .fire and .add - // Abort any current/pending executions - // Clear all callbacks and values + // Have the list do nothing anymore disable: function() { - locked = queue = []; - list = memory = ""; + list = stack = memory = undefined; return this; }, + // Is it disabled? disabled: function() { return !list; }, - - // Disable .fire - // Also disable .add unless we have memory (since it would have no effect) - // Abort any pending executions + // Lock the list in its current state lock: function() { - locked = queue = []; - if ( !memory && !firing ) { - list = memory = ""; + stack = undefined; + if ( !memory ) { + self.disable(); } return this; }, + // Is it locked? locked: function() { - return !!locked; + return !stack; }, - // Call all callbacks with the given context and arguments fireWith: function( context, args ) { - if ( !locked ) { + if ( list && ( !fired || stack ) ) { args = args || []; args = [ context, args.slice ? args.slice() : args ]; - queue.push( args ); - if ( !firing ) { - fire(); + if ( firing ) { + stack.push( args ); + } else { + fire( args ); } } return this; }, - // Call all the callbacks with the given arguments fire: function() { self.fireWith( this, arguments ); return this; }, - // To know if the callbacks have already been called at least once fired: function() { return !!fired; @@ -3417,59 +3223,14 @@ jQuery.Callbacks = function( options ) { }; -function Identity( v ) { - return v; -} -function Thrower( ex ) { - throw ex; -} - -function adoptValue( value, resolve, reject, noValue ) { - var method; - - try { - - // Check for promise aspect first to privilege synchronous behavior - if ( value && isFunction( ( method = value.promise ) ) ) { - method.call( value ).done( resolve ).fail( reject ); - - // Other thenables - } else if ( value && isFunction( ( method = value.then ) ) ) { - method.call( value, resolve, reject ); - - // Other non-thenables - } else { - - // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer: - // * false: [ value ].slice( 0 ) => resolve( value ) - // * true: [ value ].slice( 1 ) => resolve() - resolve.apply( undefined, [ value ].slice( noValue ) ); - } - - // For Promises/A+, convert exceptions into rejections - // Since jQuery.when doesn't unwrap thenables, we can skip the extra checks appearing in - // Deferred#then to conditionally suppress rejection. - } catch ( value ) { - - // Support: Android 4.0 only - // Strict mode functions invoked without .call/.apply get global-object context - reject.apply( undefined, [ value ] ); - } -} - -jQuery.extend( { +jQuery.extend({ Deferred: function( func ) { var tuples = [ - - // action, add listener, callbacks, - // ... .then handlers, argument index, [final state] - [ "notify", "progress", jQuery.Callbacks( "memory" ), - jQuery.Callbacks( "memory" ), 2 ], - [ "resolve", "done", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 0, "resolved" ], - [ "reject", "fail", jQuery.Callbacks( "once memory" ), - jQuery.Callbacks( "once memory" ), 1, "rejected" ] + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] ], state = "pending", promise = { @@ -3480,206 +3241,27 @@ jQuery.extend( { deferred.done( arguments ).fail( arguments ); return this; }, - "catch": function( fn ) { - return promise.then( null, fn ); - }, - - // Keep pipe for back-compat - pipe: function( /* fnDone, fnFail, fnProgress */ ) { + then: function( /* fnDone, fnFail, fnProgress */ ) { var fns = arguments; - - return jQuery.Deferred( function( newDefer ) { + return jQuery.Deferred(function( newDefer ) { jQuery.each( tuples, function( i, tuple ) { - - // Map tuples (progress, done, fail) to arguments (done, fail, progress) - var fn = isFunction( fns[ tuple[ 4 ] ] ) && fns[ tuple[ 4 ] ]; - - // deferred.progress(function() { bind to newDefer or newDefer.notify }) - // deferred.done(function() { bind to newDefer or newDefer.resolve }) - // deferred.fail(function() { bind to newDefer or newDefer.reject }) - deferred[ tuple[ 1 ] ]( function() { + var fn = jQuery.isFunction( fns[ i ] ) && fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ](function() { var returned = fn && fn.apply( this, arguments ); - if ( returned && isFunction( returned.promise ) ) { + if ( returned && jQuery.isFunction( returned.promise ) ) { returned.promise() - .progress( newDefer.notify ) .done( newDefer.resolve ) - .fail( newDefer.reject ); + .fail( newDefer.reject ) + .progress( newDefer.notify ); } else { - newDefer[ tuple[ 0 ] + "With" ]( - this, - fn ? [ returned ] : arguments - ); + newDefer[ tuple[ 0 ] + "With" ]( this === promise ? newDefer.promise() : this, fn ? [ returned ] : arguments ); } - } ); - } ); + }); + }); fns = null; - } ).promise(); - }, - then: function( onFulfilled, onRejected, onProgress ) { - var maxDepth = 0; - function resolve( depth, deferred, handler, special ) { - return function() { - var that = this, - args = arguments, - mightThrow = function() { - var returned, then; - - // Support: Promises/A+ section 2.3.3.3.3 - // https://promisesaplus.com/#point-59 - // Ignore double-resolution attempts - if ( depth < maxDepth ) { - return; - } - - returned = handler.apply( that, args ); - - // Support: Promises/A+ section 2.3.1 - // https://promisesaplus.com/#point-48 - if ( returned === deferred.promise() ) { - throw new TypeError( "Thenable self-resolution" ); - } - - // Support: Promises/A+ sections 2.3.3.1, 3.5 - // https://promisesaplus.com/#point-54 - // https://promisesaplus.com/#point-75 - // Retrieve `then` only once - then = returned && - - // Support: Promises/A+ section 2.3.4 - // https://promisesaplus.com/#point-64 - // Only check objects and functions for thenability - ( typeof returned === "object" || - typeof returned === "function" ) && - returned.then; - - // Handle a returned thenable - if ( isFunction( then ) ) { - - // Special processors (notify) just wait for resolution - if ( special ) { - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ) - ); - - // Normal processors (resolve) also hook into progress - } else { - - // ...and disregard older resolution values - maxDepth++; - - then.call( - returned, - resolve( maxDepth, deferred, Identity, special ), - resolve( maxDepth, deferred, Thrower, special ), - resolve( maxDepth, deferred, Identity, - deferred.notifyWith ) - ); - } - - // Handle all other returned values - } else { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Identity ) { - that = undefined; - args = [ returned ]; - } - - // Process the value(s) - // Default process is resolve - ( special || deferred.resolveWith )( that, args ); - } - }, - - // Only normal processors (resolve) catch and reject exceptions - process = special ? - mightThrow : - function() { - try { - mightThrow(); - } catch ( e ) { - - if ( jQuery.Deferred.exceptionHook ) { - jQuery.Deferred.exceptionHook( e, - process.stackTrace ); - } - - // Support: Promises/A+ section 2.3.3.3.4.1 - // https://promisesaplus.com/#point-61 - // Ignore post-resolution exceptions - if ( depth + 1 >= maxDepth ) { - - // Only substitute handlers pass on context - // and multiple values (non-spec behavior) - if ( handler !== Thrower ) { - that = undefined; - args = [ e ]; - } - - deferred.rejectWith( that, args ); - } - } - }; - - // Support: Promises/A+ section 2.3.3.3.1 - // https://promisesaplus.com/#point-57 - // Re-resolve promises immediately to dodge false rejection from - // subsequent errors - if ( depth ) { - process(); - } else { - - // Call an optional hook to record the stack, in case of exception - // since it's otherwise lost when execution goes async - if ( jQuery.Deferred.getStackHook ) { - process.stackTrace = jQuery.Deferred.getStackHook(); - } - window.setTimeout( process ); - } - }; - } - - return jQuery.Deferred( function( newDefer ) { - - // progress_handlers.add( ... ) - tuples[ 0 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onProgress ) ? - onProgress : - Identity, - newDefer.notifyWith - ) - ); - - // fulfilled_handlers.add( ... ) - tuples[ 1 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onFulfilled ) ? - onFulfilled : - Identity - ) - ); - - // rejected_handlers.add( ... ) - tuples[ 2 ][ 3 ].add( - resolve( - 0, - newDefer, - isFunction( onRejected ) ? - onRejected : - Thrower - ) - ); - } ).promise(); + }).promise(); }, - // Get a promise for this deferred // If obj is provided, the promise aspect is added to the object promise: function( obj ) { @@ -3688,60 +3270,34 @@ jQuery.extend( { }, deferred = {}; + // Keep pipe for back-compat + promise.pipe = promise.then; + // Add list-specific methods jQuery.each( tuples, function( i, tuple ) { var list = tuple[ 2 ], - stateString = tuple[ 5 ]; + stateString = tuple[ 3 ]; - // promise.progress = list.add - // promise.done = list.add - // promise.fail = list.add - promise[ tuple[ 1 ] ] = list.add; + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; // Handle state if ( stateString ) { - list.add( - function() { - - // state = "resolved" (i.e., fulfilled) - // state = "rejected" - state = stateString; - }, - - // rejected_callbacks.disable - // fulfilled_callbacks.disable - tuples[ 3 - i ][ 2 ].disable, + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; - // rejected_handlers.disable - // fulfilled_handlers.disable - tuples[ 3 - i ][ 3 ].disable, - - // progress_callbacks.lock - tuples[ 0 ][ 2 ].lock, - - // progress_handlers.lock - tuples[ 0 ][ 3 ].lock - ); + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); } - // progress_handlers.fire - // fulfilled_handlers.fire - // rejected_handlers.fire - list.add( tuple[ 3 ].fire ); - - // deferred.notify = function() { deferred.notifyWith(...) } - // deferred.resolve = function() { deferred.resolveWith(...) } - // deferred.reject = function() { deferred.rejectWith(...) } - deferred[ tuple[ 0 ] ] = function() { - deferred[ tuple[ 0 ] + "With" ]( this === deferred ? undefined : this, arguments ); + // deferred[ resolve | reject | notify ] + deferred[ tuple[0] ] = function() { + deferred[ tuple[0] + "With" ]( this === deferred ? promise : this, arguments ); return this; }; - - // deferred.notifyWith = list.fireWith - // deferred.resolveWith = list.fireWith - // deferred.rejectWith = list.fireWith - deferred[ tuple[ 0 ] + "With" ] = list.fireWith; - } ); + deferred[ tuple[0] + "With" ] = list.fireWith; + }); // Make the deferred a promise promise.promise( deferred ); @@ -3756,101 +3312,70 @@ jQuery.extend( { }, // Deferred helper - when: function( singleValue ) { - var - - // count of uncompleted subordinates - remaining = arguments.length, - - // count of unprocessed arguments - i = remaining, - - // subordinate fulfillment data - resolveContexts = Array( i ), + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, resolveValues = slice.call( arguments ), + length = resolveValues.length, - // the master Deferred - master = jQuery.Deferred(), + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, - // subordinate callback factory - updateFunc = function( i ) { + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { return function( value ) { - resolveContexts[ i ] = this; - resolveValues[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; - if ( !( --remaining ) ) { - master.resolveWith( resolveContexts, resolveValues ); + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? slice.call( arguments ) : value; + if ( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); } }; - }; - - // Single- and empty arguments are adopted like Promise.resolve - if ( remaining <= 1 ) { - adoptValue( singleValue, master.done( updateFunc( i ) ).resolve, master.reject, - !remaining ); + }, - // Use .then() to unwrap secondary thenables (cf. gh-3000) - if ( master.state() === "pending" || - isFunction( resolveValues[ i ] && resolveValues[ i ].then ) ) { + progressValues, progressContexts, resolveContexts; - return master.then(); + // Add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } } } - // Multiple arguments are aggregated like Promise.all array elements - while ( i-- ) { - adoptValue( resolveValues[ i ], updateFunc( i ), master.reject ); + // If we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); } - return master.promise(); - } -} ); - - -// These usually indicate a programmer mistake during development, -// warn about them ASAP rather than swallowing them by default. -var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/; - -jQuery.Deferred.exceptionHook = function( error, stack ) { - - // Support: IE 8 - 9 only - // Console exists when dev tools are open, which can happen at any time - if ( window.console && window.console.warn && error && rerrorNames.test( error.name ) ) { - window.console.warn( "jQuery.Deferred exception: " + error.message, error.stack, stack ); + return deferred.promise(); } -}; - - - - -jQuery.readyException = function( error ) { - window.setTimeout( function() { - throw error; - } ); -}; - - +}); // The deferred used on DOM ready -var readyList = jQuery.Deferred(); +var readyList; jQuery.fn.ready = function( fn ) { - - readyList - .then( fn ) - - // Wrap jQuery.readyException in a function so that the lookup - // happens at the time of error handling instead of callback - // registration. - .catch( function( error ) { - jQuery.readyException( error ); - } ); + // Add the callback + jQuery.ready.promise().done( fn ); return this; }; -jQuery.extend( { - +jQuery.extend({ // Is the DOM ready to be used? Set to true once it occurs. isReady: false, @@ -3858,6 +3383,15 @@ jQuery.extend( { // the ready event fires. See #6781 readyWait: 1, + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + // Handle when the DOM is ready ready: function( wait ) { @@ -3876,64 +3410,77 @@ jQuery.extend( { // If there are functions bound, to execute readyList.resolveWith( document, [ jQuery ] ); - } -} ); -jQuery.ready.then = readyList.then; + // Trigger any bound ready events + if ( jQuery.fn.triggerHandler ) { + jQuery( document ).triggerHandler( "ready" ); + jQuery( document ).off( "ready" ); + } + } +}); -// The ready event handler and self cleanup method +/** + * The ready event handler and self cleanup method + */ function completed() { - document.removeEventListener( "DOMContentLoaded", completed ); - window.removeEventListener( "load", completed ); + document.removeEventListener( "DOMContentLoaded", completed, false ); + window.removeEventListener( "load", completed, false ); jQuery.ready(); } -// Catch cases where $(document).ready() is called -// after the browser event has already occurred. -// Support: IE <=9 - 10 only -// Older IE sometimes signals "interactive" too soon -if ( document.readyState === "complete" || - ( document.readyState !== "loading" && !document.documentElement.doScroll ) ) { +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); - // Handle it asynchronously to allow scripts the opportunity to delay ready - window.setTimeout( jQuery.ready ); + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // We once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready ); -} else { + } else { - // Use the handy event callback - document.addEventListener( "DOMContentLoaded", completed ); + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", completed, false ); - // A fallback to window.onload, that will always work - window.addEventListener( "load", completed ); -} + // A fallback to window.onload, that will always work + window.addEventListener( "load", completed, false ); + } + } + return readyList.promise( obj ); +}; + +// Kick off the DOM ready check even if the user does not +jQuery.ready.promise(); // Multifunctional method to get and set values of a collection // The value/s can optionally be executed if it's a function -var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { +var access = jQuery.access = function( elems, fn, key, value, chainable, emptyGet, raw ) { var i = 0, len = elems.length, bulk = key == null; // Sets many values - if ( toType( key ) === "object" ) { + if ( jQuery.type( key ) === "object" ) { chainable = true; for ( i in key ) { - access( elems, fn, i, key[ i ], true, emptyGet, raw ); + jQuery.access( elems, fn, i, key[i], true, emptyGet, raw ); } // Sets one value } else if ( value !== undefined ) { chainable = true; - if ( !isFunction( value ) ) { + if ( !jQuery.isFunction( value ) ) { raw = true; } if ( bulk ) { - // Bulk operations run against the entire set if ( raw ) { fn.call( elems, value ); @@ -3950,126 +3497,127 @@ var access = function( elems, fn, key, value, chainable, emptyGet, raw ) { if ( fn ) { for ( ; i < len; i++ ) { - fn( - elems[ i ], key, raw ? - value : - value.call( elems[ i ], i, fn( elems[ i ], key ) ) - ); + fn( elems[i], key, raw ? value : value.call( elems[i], i, fn( elems[i], key ) ) ); } } } - if ( chainable ) { - return elems; - } - - // Gets - if ( bulk ) { - return fn.call( elems ); - } + return chainable ? + elems : - return len ? fn( elems[ 0 ], key ) : emptyGet; + // Gets + bulk ? + fn.call( elems ) : + len ? fn( elems[0], key ) : emptyGet; }; -// Matches dashed string for camelizing -var rmsPrefix = /^-ms-/, - rdashAlpha = /-([a-z])/g; - -// Used by camelCase as callback to replace() -function fcamelCase( all, letter ) { - return letter.toUpperCase(); -} - -// Convert dashed to camelCase; used by the css and data modules -// Support: IE <=9 - 11, Edge 12 - 15 -// Microsoft forgot to hump their vendor prefix (#9572) -function camelCase( string ) { - return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); -} -var acceptData = function( owner ) { - +/** + * Determines whether an object can have data + */ +jQuery.acceptData = function( owner ) { // Accepts only: // - Node // - Node.ELEMENT_NODE // - Node.DOCUMENT_NODE // - Object // - Any + /* jshint -W018 */ return owner.nodeType === 1 || owner.nodeType === 9 || !( +owner.nodeType ); }; - - function Data() { + // Support: Android<4, + // Old WebKit does not have Object.preventExtensions/freeze method, + // return new empty object instead with no [[set]] accessor + Object.defineProperty( this.cache = {}, 0, { + get: function() { + return {}; + } + }); + this.expando = jQuery.expando + Data.uid++; } Data.uid = 1; +Data.accepts = jQuery.acceptData; Data.prototype = { + key: function( owner ) { + // We can accept data for non-element nodes in modern browsers, + // but we should not, see #8335. + // Always return the key for a frozen object. + if ( !Data.accepts( owner ) ) { + return 0; + } - cache: function( owner ) { - - // Check if the owner object already has a cache - var value = owner[ this.expando ]; + var descriptor = {}, + // Check if the owner object already has a cache key + unlock = owner[ this.expando ]; // If not, create one - if ( !value ) { - value = {}; - - // We can accept data for non-element nodes in modern browsers, - // but we should not, see #8335. - // Always return an empty object. - if ( acceptData( owner ) ) { - - // If it is a node unlikely to be stringify-ed or looped over - // use plain assignment - if ( owner.nodeType ) { - owner[ this.expando ] = value; - - // Otherwise secure it in a non-enumerable property - // configurable must be true to allow the property to be - // deleted when data is removed - } else { - Object.defineProperty( owner, this.expando, { - value: value, - configurable: true - } ); - } + if ( !unlock ) { + unlock = Data.uid++; + + // Secure it in a non-enumerable, non-writable property + try { + descriptor[ this.expando ] = { value: unlock }; + Object.defineProperties( owner, descriptor ); + + // Support: Android<4 + // Fallback to a less secure definition + } catch ( e ) { + descriptor[ this.expando ] = unlock; + jQuery.extend( owner, descriptor ); } } - return value; + // Ensure the cache object + if ( !this.cache[ unlock ] ) { + this.cache[ unlock ] = {}; + } + + return unlock; }, set: function( owner, data, value ) { var prop, - cache = this.cache( owner ); + // There may be an unlock assigned to this node, + // if there is no entry for this "owner", create one inline + // and set the unlock as though an owner entry had always existed + unlock = this.key( owner ), + cache = this.cache[ unlock ]; // Handle: [ owner, key, value ] args - // Always use camelCase key (gh-2257) if ( typeof data === "string" ) { - cache[ camelCase( data ) ] = value; + cache[ data ] = value; - // Handle: [ owner, { property } ] args + // Handle: [ owner, { properties } ] args } else { - - // Copy the property one-by-one to the cache object - for ( prop in data ) { - cache[ camelCase( prop ) ] = data[ prop ]; + // Fresh assignments by object are shallow copied + if ( jQuery.isEmptyObject( cache ) ) { + jQuery.extend( this.cache[ unlock ], data ); + // Otherwise, copy the properties one-by-one to the cache object + } else { + for ( prop in data ) { + cache[ prop ] = data[ prop ]; + } } } return cache; }, get: function( owner, key ) { - return key === undefined ? - this.cache( owner ) : + // Either a valid cache is found, or will be created. + // New caches will be created and the unlock returned, + // allowing direct access to the newly created + // empty data object. A valid owner object must be provided. + var cache = this.cache[ this.key( owner ) ]; - // Always use camelCase key (gh-2257) - owner[ this.expando ] && owner[ this.expando ][ camelCase( key ) ]; + return key === undefined ? + cache : cache[ key ]; }, access: function( owner, key, value ) { - + var stored; // In cases where either: // // 1. No key was specified @@ -4082,15 +3630,18 @@ Data.prototype = { // 2. The data stored at the key // if ( key === undefined || - ( ( key && typeof key === "string" ) && value === undefined ) ) { + ((key && typeof key === "string") && value === undefined) ) { + + stored = this.get( owner, key ); - return this.get( owner, key ); + return stored !== undefined ? + stored : this.get( owner, jQuery.camelCase(key) ); } - // When the key is not a string, or both a key and value + // [*]When the key is not a string, or both a key and value // are specified, set or extend (existing objects) with either: // - // 1. An object of property + // 1. An object of properties // 2. A key and value // this.set( owner, key, value ); @@ -4100,60 +3651,57 @@ Data.prototype = { return value !== undefined ? value : key; }, remove: function( owner, key ) { - var i, - cache = owner[ this.expando ]; - - if ( cache === undefined ) { - return; - } + var i, name, camel, + unlock = this.key( owner ), + cache = this.cache[ unlock ]; - if ( key !== undefined ) { + if ( key === undefined ) { + this.cache[ unlock ] = {}; + } else { // Support array or space separated string of keys - if ( Array.isArray( key ) ) { - - // If key is an array of keys... - // We always set camelCase keys, so remove that. - key = key.map( camelCase ); + if ( jQuery.isArray( key ) ) { + // If "name" is an array of keys... + // When data is initially created, via ("key", "val") signature, + // keys will be converted to camelCase. + // Since there is no way to tell _how_ a key was added, remove + // both plain key and camelCase key. #12786 + // This will only penalize the array argument path. + name = key.concat( key.map( jQuery.camelCase ) ); } else { - key = camelCase( key ); - - // If a key with the spaces exists, use it. - // Otherwise, create an array by matching non-whitespace - key = key in cache ? - [ key ] : - ( key.match( rnothtmlwhite ) || [] ); + camel = jQuery.camelCase( key ); + // Try the string as a key before any manipulation + if ( key in cache ) { + name = [ key, camel ]; + } else { + // If a key with the spaces exists, use it. + // Otherwise, create an array by matching non-whitespace + name = camel; + name = name in cache ? + [ name ] : ( name.match( rnotwhite ) || [] ); + } } - i = key.length; - + i = name.length; while ( i-- ) { - delete cache[ key[ i ] ]; - } - } - - // Remove the expando if there's no more data - if ( key === undefined || jQuery.isEmptyObject( cache ) ) { - - // Support: Chrome <=35 - 45 - // Webkit & Blink performance suffers when deleting property - // from DOM nodes, so set to undefined instead - // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted) - if ( owner.nodeType ) { - owner[ this.expando ] = undefined; - } else { - delete owner[ this.expando ]; + delete cache[ name[ i ] ]; } } }, hasData: function( owner ) { - var cache = owner[ this.expando ]; - return cache !== undefined && !jQuery.isEmptyObject( cache ); + return !jQuery.isEmptyObject( + this.cache[ owner[ this.expando ] ] || {} + ); + }, + discard: function( owner ) { + if ( owner[ this.expando ] ) { + delete this.cache[ owner[ this.expando ] ]; + } } }; -var dataPriv = new Data(); +var data_priv = new Data(); -var dataUser = new Data(); +var data_user = new Data(); @@ -4164,36 +3712,11 @@ var dataUser = new Data(); // paths to a single mechanism. // 3. Use the same single mechanism to support "private" and "user" data. // 4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData) -// 5. Avoid exposing implementation details on user objects (eg. expando property) +// 5. Avoid exposing implementation details on user objects (eg. expando properties) // 6. Provide a clear path for implementation upgrade to WeakMap in 2014 var rbrace = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, - rmultiDash = /[A-Z]/g; - -function getData( data ) { - if ( data === "true" ) { - return true; - } - - if ( data === "false" ) { - return false; - } - - if ( data === "null" ) { - return null; - } - - // Only convert to a number if it doesn't change the string - if ( data === +data + "" ) { - return +data; - } - - if ( rbrace.test( data ) ) { - return JSON.parse( data ); - } - - return data; -} + rmultiDash = /([A-Z])/g; function dataAttr( elem, key, data ) { var name; @@ -4201,16 +3724,22 @@ function dataAttr( elem, key, data ) { // If nothing was found internally, try to fetch any // data from the HTML5 data-* attribute if ( data === undefined && elem.nodeType === 1 ) { - name = "data-" + key.replace( rmultiDash, "-$&" ).toLowerCase(); + name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); data = elem.getAttribute( name ); if ( typeof data === "string" ) { try { - data = getData( data ); - } catch ( e ) {} + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} // Make sure we set the data so it isn't changed later - dataUser.set( elem, key, data ); + data_user.set( elem, key, data ); } else { data = undefined; } @@ -4218,31 +3747,31 @@ function dataAttr( elem, key, data ) { return data; } -jQuery.extend( { +jQuery.extend({ hasData: function( elem ) { - return dataUser.hasData( elem ) || dataPriv.hasData( elem ); + return data_user.hasData( elem ) || data_priv.hasData( elem ); }, data: function( elem, name, data ) { - return dataUser.access( elem, name, data ); + return data_user.access( elem, name, data ); }, removeData: function( elem, name ) { - dataUser.remove( elem, name ); + data_user.remove( elem, name ); }, // TODO: Now that all calls to _data and _removeData have been replaced - // with direct calls to dataPriv methods, these can be deprecated. + // with direct calls to data_priv methods, these can be deprecated. _data: function( elem, name, data ) { - return dataPriv.access( elem, name, data ); + return data_priv.access( elem, name, data ); }, _removeData: function( elem, name ) { - dataPriv.remove( elem, name ); + data_priv.remove( elem, name ); } -} ); +}); -jQuery.fn.extend( { +jQuery.fn.extend({ data: function( key, value ) { var i, name, data, elem = this[ 0 ], @@ -4251,23 +3780,23 @@ jQuery.fn.extend( { // Gets all values if ( key === undefined ) { if ( this.length ) { - data = dataUser.get( elem ); + data = data_user.get( elem ); - if ( elem.nodeType === 1 && !dataPriv.get( elem, "hasDataAttrs" ) ) { + if ( elem.nodeType === 1 && !data_priv.get( elem, "hasDataAttrs" ) ) { i = attrs.length; while ( i-- ) { - // Support: IE 11 only + // Support: IE11+ // The attrs elements can be null (#14894) if ( attrs[ i ] ) { name = attrs[ i ].name; if ( name.indexOf( "data-" ) === 0 ) { - name = camelCase( name.slice( 5 ) ); + name = jQuery.camelCase( name.slice(5) ); dataAttr( elem, name, data[ name ] ); } } } - dataPriv.set( elem, "hasDataAttrs", true ); + data_priv.set( elem, "hasDataAttrs", true ); } } @@ -4276,13 +3805,14 @@ jQuery.fn.extend( { // Sets multiple values if ( typeof key === "object" ) { - return this.each( function() { - dataUser.set( this, key ); - } ); + return this.each(function() { + data_user.set( this, key ); + }); } return access( this, function( value ) { - var data; + var data, + camelKey = jQuery.camelCase( key ); // The calling jQuery object (element matches) is not empty // (and therefore has an element appears at this[ 0 ]) and the @@ -4290,17 +3820,23 @@ jQuery.fn.extend( { // will result in `undefined` for elem = this[ 0 ] which will // throw an exception if an attempt to read a data cache is made. if ( elem && value === undefined ) { + // Attempt to get data from the cache + // with the key as-is + data = data_user.get( elem, key ); + if ( data !== undefined ) { + return data; + } // Attempt to get data from the cache - // The key will always be camelCased in Data - data = dataUser.get( elem, key ); + // with the key camelized + data = data_user.get( elem, camelKey ); if ( data !== undefined ) { return data; } // Attempt to "discover" the data in // HTML5 custom data-* attrs - data = dataAttr( elem, key ); + data = dataAttr( elem, camelKey, undefined ); if ( data !== undefined ) { return data; } @@ -4310,34 +3846,46 @@ jQuery.fn.extend( { } // Set the data... - this.each( function() { - - // We always store the camelCased key - dataUser.set( this, key, value ); - } ); + this.each(function() { + // First, attempt to store a copy or reference of any + // data that might've been store with a camelCased key. + var data = data_user.get( this, camelKey ); + + // For HTML5 data-* attribute interop, we have to + // store property names with dashes in a camelCase form. + // This might not apply to all properties...* + data_user.set( this, camelKey, value ); + + // *... In the case of properties that might _actually_ + // have dashes, we need to also store a copy of that + // unchanged property. + if ( key.indexOf("-") !== -1 && data !== undefined ) { + data_user.set( this, key, value ); + } + }); }, null, value, arguments.length > 1, null, true ); }, removeData: function( key ) { - return this.each( function() { - dataUser.remove( this, key ); - } ); + return this.each(function() { + data_user.remove( this, key ); + }); } -} ); +}); -jQuery.extend( { +jQuery.extend({ queue: function( elem, type, data ) { var queue; if ( elem ) { type = ( type || "fx" ) + "queue"; - queue = dataPriv.get( elem, type ); + queue = data_priv.get( elem, type ); // Speed up dequeue by getting out quickly if this is just a lookup if ( data ) { - if ( !queue || Array.isArray( data ) ) { - queue = dataPriv.access( elem, type, jQuery.makeArray( data ) ); + if ( !queue || jQuery.isArray( data ) ) { + queue = data_priv.access( elem, type, jQuery.makeArray(data) ); } else { queue.push( data ); } @@ -4384,15 +3932,15 @@ jQuery.extend( { // Not public - generate a queueHooks object, or return the current one _queueHooks: function( elem, type ) { var key = type + "queueHooks"; - return dataPriv.get( elem, key ) || dataPriv.access( elem, key, { - empty: jQuery.Callbacks( "once memory" ).add( function() { - dataPriv.remove( elem, [ type + "queue", key ] ); - } ) - } ); + return data_priv.get( elem, key ) || data_priv.access( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + data_priv.remove( elem, [ type + "queue", key ] ); + }) + }); } -} ); +}); -jQuery.fn.extend( { +jQuery.fn.extend({ queue: function( type, data ) { var setter = 2; @@ -4403,31 +3951,30 @@ jQuery.fn.extend( { } if ( arguments.length < setter ) { - return jQuery.queue( this[ 0 ], type ); + return jQuery.queue( this[0], type ); } return data === undefined ? this : - this.each( function() { + this.each(function() { var queue = jQuery.queue( this, type, data ); // Ensure a hooks for this queue jQuery._queueHooks( this, type ); - if ( type === "fx" && queue[ 0 ] !== "inprogress" ) { + if ( type === "fx" && queue[0] !== "inprogress" ) { jQuery.dequeue( this, type ); } - } ); + }); }, dequeue: function( type ) { - return this.each( function() { + return this.each(function() { jQuery.dequeue( this, type ); - } ); + }); }, clearQueue: function( type ) { return this.queue( type || "fx", [] ); }, - // Get a promise resolved when queues of a certain type // are emptied (fx is the type by default) promise: function( type, obj ) { @@ -4449,7 +3996,7 @@ jQuery.fn.extend( { type = type || "fx"; while ( i-- ) { - tmp = dataPriv.get( elements[ i ], type + "queueHooks" ); + tmp = data_priv.get( elements[ i ], type + "queueHooks" ); if ( tmp && tmp.empty ) { count++; tmp.empty.add( resolve ); @@ -4458,384 +4005,28 @@ jQuery.fn.extend( { resolve(); return defer.promise( obj ); } -} ); -var pnum = ( /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/ ).source; - -var rcssNum = new RegExp( "^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i" ); - +}); +var pnum = (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; var cssExpand = [ "Top", "Right", "Bottom", "Left" ]; -var isHiddenWithinTree = function( elem, el ) { - - // isHiddenWithinTree might be called from jQuery#filter function; +var isHidden = function( elem, el ) { + // isHidden might be called from jQuery#filter function; // in that case, element will be second argument elem = el || elem; - - // Inline style trumps all - return elem.style.display === "none" || - elem.style.display === "" && - - // Otherwise, check computed style - // Support: Firefox <=43 - 45 - // Disconnected elements can have computed display: none, so first confirm that elem is - // in the document. - jQuery.contains( elem.ownerDocument, elem ) && - - jQuery.css( elem, "display" ) === "none"; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); }; -var swap = function( elem, options, callback, args ) { - var ret, name, - old = {}; - - // Remember the old values, and insert the new ones - for ( name in options ) { - old[ name ] = elem.style[ name ]; - elem.style[ name ] = options[ name ]; - } - - ret = callback.apply( elem, args || [] ); - - // Revert the old values - for ( name in options ) { - elem.style[ name ] = old[ name ]; - } - - return ret; -}; - - - - -function adjustCSS( elem, prop, valueParts, tween ) { - var adjusted, scale, - maxIterations = 20, - currentValue = tween ? - function() { - return tween.cur(); - } : - function() { - return jQuery.css( elem, prop, "" ); - }, - initial = currentValue(), - unit = valueParts && valueParts[ 3 ] || ( jQuery.cssNumber[ prop ] ? "" : "px" ), - - // Starting value computation is required for potential unit mismatches - initialInUnit = ( jQuery.cssNumber[ prop ] || unit !== "px" && +initial ) && - rcssNum.exec( jQuery.css( elem, prop ) ); - - if ( initialInUnit && initialInUnit[ 3 ] !== unit ) { - - // Support: Firefox <=54 - // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144) - initial = initial / 2; - - // Trust units reported by jQuery.css - unit = unit || initialInUnit[ 3 ]; - - // Iteratively approximate from a nonzero starting point - initialInUnit = +initial || 1; - - while ( maxIterations-- ) { - - // Evaluate and update our best guess (doubling guesses that zero out). - // Finish if the scale equals or crosses 1 (making the old*new product non-positive). - jQuery.style( elem, prop, initialInUnit + unit ); - if ( ( 1 - scale ) * ( 1 - ( scale = currentValue() / initial || 0.5 ) ) <= 0 ) { - maxIterations = 0; - } - initialInUnit = initialInUnit / scale; - - } - - initialInUnit = initialInUnit * 2; - jQuery.style( elem, prop, initialInUnit + unit ); - - // Make sure we update the tween property later on - valueParts = valueParts || []; - } - - if ( valueParts ) { - initialInUnit = +initialInUnit || +initial || 0; - - // Apply relative offset (+=/-=) if specified - adjusted = valueParts[ 1 ] ? - initialInUnit + ( valueParts[ 1 ] + 1 ) * valueParts[ 2 ] : - +valueParts[ 2 ]; - if ( tween ) { - tween.unit = unit; - tween.start = initialInUnit; - tween.end = adjusted; - } - } - return adjusted; -} - - -var defaultDisplayMap = {}; - -function getDefaultDisplay( elem ) { - var temp, - doc = elem.ownerDocument, - nodeName = elem.nodeName, - display = defaultDisplayMap[ nodeName ]; - - if ( display ) { - return display; - } - - temp = doc.body.appendChild( doc.createElement( nodeName ) ); - display = jQuery.css( temp, "display" ); - - temp.parentNode.removeChild( temp ); - - if ( display === "none" ) { - display = "block"; - } - defaultDisplayMap[ nodeName ] = display; - - return display; -} - -function showHide( elements, show ) { - var display, elem, - values = [], - index = 0, - length = elements.length; - - // Determine new display value for elements that need to change - for ( ; index < length; index++ ) { - elem = elements[ index ]; - if ( !elem.style ) { - continue; - } - - display = elem.style.display; - if ( show ) { - - // Since we force visibility upon cascade-hidden elements, an immediate (and slow) - // check is required in this first loop unless we have a nonempty display value (either - // inline or about-to-be-restored) - if ( display === "none" ) { - values[ index ] = dataPriv.get( elem, "display" ) || null; - if ( !values[ index ] ) { - elem.style.display = ""; - } - } - if ( elem.style.display === "" && isHiddenWithinTree( elem ) ) { - values[ index ] = getDefaultDisplay( elem ); - } - } else { - if ( display !== "none" ) { - values[ index ] = "none"; - - // Remember what we're overwriting - dataPriv.set( elem, "display", display ); - } - } - } - - // Set the display of the elements in a second loop to avoid constant reflow - for ( index = 0; index < length; index++ ) { - if ( values[ index ] != null ) { - elements[ index ].style.display = values[ index ]; - } - } - - return elements; -} - -jQuery.fn.extend( { - show: function() { - return showHide( this, true ); - }, - hide: function() { - return showHide( this ); - }, - toggle: function( state ) { - if ( typeof state === "boolean" ) { - return state ? this.show() : this.hide(); - } - - return this.each( function() { - if ( isHiddenWithinTree( this ) ) { - jQuery( this ).show(); - } else { - jQuery( this ).hide(); - } - } ); - } -} ); -var rcheckableType = ( /^(?:checkbox|radio)$/i ); - -var rtagName = ( /<([a-z][^\/\0>\x20\t\r\n\f]+)/i ); - -var rscriptType = ( /^$|^module$|\/(?:java|ecma)script/i ); - - - -// We have to close these tags to support XHTML (#13200) -var wrapMap = { - - // Support: IE <=9 only - option: [ 1, "" ], - - // XHTML parsers do not magically insert elements in the - // same way that tag soup parsers do. So we cannot shorten - // this by omitting or other required elements. - thead: [ 1, "", "
      " ], - col: [ 2, "", "
      " ], - tr: [ 2, "", "
      " ], - td: [ 3, "", "
      " ], - - _default: [ 0, "", "" ] -}; - -// Support: IE <=9 only -wrapMap.optgroup = wrapMap.option; - -wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; -wrapMap.th = wrapMap.td; - - -function getAll( context, tag ) { - - // Support: IE <=9 - 11 only - // Use typeof to avoid zero-argument method invocation on host objects (#15151) - var ret; - - if ( typeof context.getElementsByTagName !== "undefined" ) { - ret = context.getElementsByTagName( tag || "*" ); - - } else if ( typeof context.querySelectorAll !== "undefined" ) { - ret = context.querySelectorAll( tag || "*" ); - - } else { - ret = []; - } - - if ( tag === undefined || tag && nodeName( context, tag ) ) { - return jQuery.merge( [ context ], ret ); - } - - return ret; -} - - -// Mark scripts as having already been evaluated -function setGlobalEval( elems, refElements ) { - var i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - dataPriv.set( - elems[ i ], - "globalEval", - !refElements || dataPriv.get( refElements[ i ], "globalEval" ) - ); - } -} - - -var rhtml = /<|&#?\w+;/; - -function buildFragment( elems, context, scripts, selection, ignored ) { - var elem, tmp, tag, wrap, contains, j, - fragment = context.createDocumentFragment(), - nodes = [], - i = 0, - l = elems.length; - - for ( ; i < l; i++ ) { - elem = elems[ i ]; - - if ( elem || elem === 0 ) { - - // Add nodes directly - if ( toType( elem ) === "object" ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); - - // Convert non-html into a text node - } else if ( !rhtml.test( elem ) ) { - nodes.push( context.createTextNode( elem ) ); - - // Convert html into DOM nodes - } else { - tmp = tmp || fragment.appendChild( context.createElement( "div" ) ); - - // Deserialize a standard representation - tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); - wrap = wrapMap[ tag ] || wrapMap._default; - tmp.innerHTML = wrap[ 1 ] + jQuery.htmlPrefilter( elem ) + wrap[ 2 ]; - - // Descend through wrappers to the right content - j = wrap[ 0 ]; - while ( j-- ) { - tmp = tmp.lastChild; - } - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( nodes, tmp.childNodes ); - - // Remember the top-level container - tmp = fragment.firstChild; - - // Ensure the created nodes are orphaned (#12392) - tmp.textContent = ""; - } - } - } - - // Remove wrapper from fragment - fragment.textContent = ""; - - i = 0; - while ( ( elem = nodes[ i++ ] ) ) { - - // Skip elements already in the context collection (trac-4087) - if ( selection && jQuery.inArray( elem, selection ) > -1 ) { - if ( ignored ) { - ignored.push( elem ); - } - continue; - } - - contains = jQuery.contains( elem.ownerDocument, elem ); - - // Append to fragment - tmp = getAll( fragment.appendChild( elem ), "script" ); - - // Preserve script evaluation history - if ( contains ) { - setGlobalEval( tmp ); - } - - // Capture executables - if ( scripts ) { - j = 0; - while ( ( elem = tmp[ j++ ] ) ) { - if ( rscriptType.test( elem.type || "" ) ) { - scripts.push( elem ); - } - } - } - } +var rcheckableType = (/^(?:checkbox|radio)$/i); - return fragment; -} -( function() { +(function() { var fragment = document.createDocumentFragment(), div = fragment.appendChild( document.createElement( "div" ) ), input = document.createElement( "input" ); - // Support: Android 4.0 - 4.3 only + // Support: Safari<=5.1 // Check state lost if the name is set (#11217) // Support: Windows Web Apps (WWA) // `name` and `type` must use .setAttribute for WWA (#14901) @@ -4845,23 +4036,27 @@ function buildFragment( elems, context, scripts, selection, ignored ) { div.appendChild( input ); - // Support: Android <=4.1 only + // Support: Safari<=5.1, Android<4.2 // Older WebKit doesn't clone checked state correctly in fragments support.checkClone = div.cloneNode( true ).cloneNode( true ).lastChild.checked; - // Support: IE <=11 only + // Support: IE<=11+ // Make sure textarea (and checkbox) defaultValue is properly cloned div.innerHTML = ""; support.noCloneChecked = !!div.cloneNode( true ).lastChild.defaultValue; -} )(); -var documentElement = document.documentElement; +})(); +var strundefined = typeof undefined; +support.focusinBubbles = "onfocusin" in window; + + var rkeyEvent = /^key/, - rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/, - rtypenamespace = /^([^.]*)(?:\.(.+)|)/; + rmouseEvent = /^(?:mouse|pointer|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + rtypenamespace = /^([^.]*)(?:\.(.+)|)$/; function returnTrue() { return true; @@ -4871,75 +4066,12 @@ function returnFalse() { return false; } -// Support: IE <=9 only -// See #13393 for more info function safeActiveElement() { try { return document.activeElement; } catch ( err ) { } } -function on( elem, types, selector, data, fn, one ) { - var origFn, type; - - // Types can be a map of types/handlers - if ( typeof types === "object" ) { - - // ( types-Object, selector, data ) - if ( typeof selector !== "string" ) { - - // ( types-Object, data ) - data = data || selector; - selector = undefined; - } - for ( type in types ) { - on( elem, type, selector, data, types[ type ], one ); - } - return elem; - } - - if ( data == null && fn == null ) { - - // ( types, fn ) - fn = selector; - data = selector = undefined; - } else if ( fn == null ) { - if ( typeof selector === "string" ) { - - // ( types, selector, fn ) - fn = data; - data = undefined; - } else { - - // ( types, data, fn ) - fn = data; - data = selector; - selector = undefined; - } - } - if ( fn === false ) { - fn = returnFalse; - } else if ( !fn ) { - return elem; - } - - if ( one === 1 ) { - origFn = fn; - fn = function( event ) { - - // Can use an empty set, since event contains the info - jQuery().off( event ); - return origFn.apply( this, arguments ); - }; - - // Use same guid so caller can remove using origFn - fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); - } - return elem.each( function() { - jQuery.event.add( this, types, fn, data, selector ); - } ); -} - /* * Helper functions for managing events -- not part of the public interface. * Props to Dean Edwards' addEvent library for many of the ideas. @@ -4953,7 +4085,7 @@ jQuery.event = { var handleObjIn, eventHandle, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, - elemData = dataPriv.get( elem ); + elemData = data_priv.get( elem ); // Don't attach events to noData or text/comment nodes (but allow plain objects) if ( !elemData ) { @@ -4967,38 +4099,31 @@ jQuery.event = { selector = handleObjIn.selector; } - // Ensure that invalid selectors throw exceptions at attach time - // Evaluate against documentElement in case elem is a non-element node (e.g., document) - if ( selector ) { - jQuery.find.matchesSelector( documentElement, selector ); - } - // Make sure that the handler has a unique ID, used to find/remove it later if ( !handler.guid ) { handler.guid = jQuery.guid++; } // Init the element's event structure and main handler, if this is the first - if ( !( events = elemData.events ) ) { + if ( !(events = elemData.events) ) { events = elemData.events = {}; } - if ( !( eventHandle = elemData.handle ) ) { + if ( !(eventHandle = elemData.handle) ) { eventHandle = elemData.handle = function( e ) { - // Discard the second event of a jQuery.event.trigger() and // when an event is called after a page has unloaded - return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? + return typeof jQuery !== strundefined && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply( elem, arguments ) : undefined; }; } // Handle multiple events separated by a space - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); // There *must* be a type, no attaching namespace-only handlers if ( !type ) { @@ -5015,7 +4140,7 @@ jQuery.event = { special = jQuery.event.special[ type ] || {}; // handleObj is passed to all event handlers - handleObj = jQuery.extend( { + handleObj = jQuery.extend({ type: type, origType: origType, data: data, @@ -5023,20 +4148,18 @@ jQuery.event = { guid: handler.guid, selector: selector, needsContext: selector && jQuery.expr.match.needsContext.test( selector ), - namespace: namespaces.join( "." ) + namespace: namespaces.join(".") }, handleObjIn ); // Init the event handler queue if we're the first - if ( !( handlers = events[ type ] ) ) { + if ( !(handlers = events[ type ]) ) { handlers = events[ type ] = []; handlers.delegateCount = 0; // Only use addEventListener if the special events handler returns false - if ( !special.setup || - special.setup.call( elem, data, namespaces, eventHandle ) === false ) { - + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { if ( elem.addEventListener ) { - elem.addEventListener( type, eventHandle ); + elem.addEventListener( type, eventHandle, false ); } } } @@ -5068,19 +4191,19 @@ jQuery.event = { var j, origCount, tmp, events, t, handleObj, special, handlers, type, namespaces, origType, - elemData = dataPriv.hasData( elem ) && dataPriv.get( elem ); + elemData = data_priv.hasData( elem ) && data_priv.get( elem ); - if ( !elemData || !( events = elemData.events ) ) { + if ( !elemData || !(events = elemData.events) ) { return; } // Once for each type.namespace in types; type may be omitted - types = ( types || "" ).match( rnothtmlwhite ) || [ "" ]; + types = ( types || "" ).match( rnotwhite ) || [ "" ]; t = types.length; while ( t-- ) { - tmp = rtypenamespace.exec( types[ t ] ) || []; - type = origType = tmp[ 1 ]; - namespaces = ( tmp[ 2 ] || "" ).split( "." ).sort(); + tmp = rtypenamespace.exec( types[t] ) || []; + type = origType = tmp[1]; + namespaces = ( tmp[2] || "" ).split( "." ).sort(); // Unbind all events (on this namespace, if provided) for the element if ( !type ) { @@ -5093,8 +4216,7 @@ jQuery.event = { special = jQuery.event.special[ type ] || {}; type = ( selector ? special.delegateType : special.bindType ) || type; handlers = events[ type ] || []; - tmp = tmp[ 2 ] && - new RegExp( "(^|\\.)" + namespaces.join( "\\.(?:.*\\.|)" ) + "(\\.|$)" ); + tmp = tmp[2] && new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ); // Remove matching events origCount = j = handlers.length; @@ -5104,8 +4226,7 @@ jQuery.event = { if ( ( mappedTypes || origType === handleObj.origType ) && ( !handler || handler.guid === handleObj.guid ) && ( !tmp || tmp.test( handleObj.namespace ) ) && - ( !selector || selector === handleObj.selector || - selector === "**" && handleObj.selector ) ) { + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { handlers.splice( j, 1 ); if ( handleObj.selector ) { @@ -5120,9 +4241,7 @@ jQuery.event = { // Remove generic event handler if we removed something and no more handlers exist // (avoids potential for endless recursion during removal of special event handlers) if ( origCount && !handlers.length ) { - if ( !special.teardown || - special.teardown.call( elem, namespaces, elemData.handle ) === false ) { - + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { jQuery.removeEvent( elem, type, elemData.handle ); } @@ -5130,29 +4249,158 @@ jQuery.event = { } } - // Remove data and the expando if it's no longer used + // Remove the expando if it's no longer used if ( jQuery.isEmptyObject( events ) ) { - dataPriv.remove( elem, "handle events" ); + delete elemData.handle; + data_priv.remove( elem, "events" ); } }, - dispatch: function( nativeEvent ) { + trigger: function( event, data, elem, onlyHandlers ) { - // Make a writable jQuery.Event from the native event object - var event = jQuery.event.fix( nativeEvent ); + var i, cur, tmp, bubbleType, ontype, handle, special, + eventPath = [ elem || document ], + type = hasOwn.call( event, "type" ) ? event.type : event, + namespaces = hasOwn.call( event, "namespace" ) ? event.namespace.split(".") : []; - var i, j, ret, matched, handleObj, handlerQueue, - args = new Array( arguments.length ), - handlers = ( dataPriv.get( this, "events" ) || {} )[ event.type ] || [], - special = jQuery.event.special[ event.type ] || {}; + cur = tmp = elem = elem || document; - // Use the fix-ed jQuery.Event rather than the (read-only) native event - args[ 0 ] = event; + // Don't do events on text and comment nodes + if ( elem.nodeType === 3 || elem.nodeType === 8 ) { + return; + } + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf(".") >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + ontype = type.indexOf(":") < 0 && "on" + type; + + // Caller can pass in a jQuery.Event object, Object, or just an event type string + event = event[ jQuery.expando ] ? + event : + new jQuery.Event( type, typeof event === "object" && event ); + + // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true) + event.isTrigger = onlyHandlers ? 2 : 3; + event.namespace = namespaces.join("."); + event.namespace_re = event.namespace ? + new RegExp( "(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)" ) : + null; + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data == null ? + [ event ] : + jQuery.makeArray( data, [ event ] ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( !onlyHandlers && special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + if ( !rfocusMorph.test( bubbleType + type ) ) { + cur = cur.parentNode; + } + for ( ; cur; cur = cur.parentNode ) { + eventPath.push( cur ); + tmp = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( tmp === (elem.ownerDocument || document) ) { + eventPath.push( tmp.defaultView || tmp.parentWindow || window ); + } + } + + // Fire handlers on the event path + i = 0; + while ( (cur = eventPath[i++]) && !event.isPropagationStopped() ) { + + event.type = i > 1 ? + bubbleType : + special.bindType || type; + + // jQuery handler + handle = ( data_priv.get( cur, "events" ) || {} )[ event.type ] && data_priv.get( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + + // Native handler + handle = ontype && cur[ ontype ]; + if ( handle && handle.apply && jQuery.acceptData( cur ) ) { + event.result = handle.apply( cur, data ); + if ( event.result === false ) { + event.preventDefault(); + } + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( eventPath.pop(), data ) === false) && + jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Don't do default actions on window, that's where global variables be (#6170) + if ( ontype && jQuery.isFunction( elem[ type ] ) && !jQuery.isWindow( elem ) ) { - for ( i = 1; i < arguments.length; i++ ) { - args[ i ] = arguments[ i ]; + // Don't re-trigger an onFOO event when we call its FOO() method + tmp = elem[ ontype ]; + + if ( tmp ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( tmp ) { + elem[ ontype ] = tmp; + } + } + } } + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event ); + + var i, j, ret, matched, handleObj, + handlerQueue = [], + args = slice.call( arguments ), + handlers = ( data_priv.get( this, "events" ) || {} )[ event.type ] || [], + special = jQuery.event.special[ event.type ] || {}; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired @@ -5165,25 +4413,24 @@ jQuery.event = { // Run delegates first; they may want to stop propagation beneath us i = 0; - while ( ( matched = handlerQueue[ i++ ] ) && !event.isPropagationStopped() ) { + while ( (matched = handlerQueue[ i++ ]) && !event.isPropagationStopped() ) { event.currentTarget = matched.elem; j = 0; - while ( ( handleObj = matched.handlers[ j++ ] ) && - !event.isImmediatePropagationStopped() ) { + while ( (handleObj = matched.handlers[ j++ ]) && !event.isImmediatePropagationStopped() ) { // Triggered event must either 1) have no namespace, or 2) have namespace(s) // a subset or equal to those in the bound event (both can have no namespace). - if ( !event.rnamespace || event.rnamespace.test( handleObj.namespace ) ) { + if ( !event.namespace_re || event.namespace_re.test( handleObj.namespace ) ) { event.handleObj = handleObj; event.data = handleObj.data; - ret = ( ( jQuery.event.special[ handleObj.origType ] || {} ).handle || - handleObj.handler ).apply( matched.elem, args ); + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); if ( ret !== undefined ) { - if ( ( event.result = ret ) === false ) { + if ( (event.result = ret) === false ) { event.preventDefault(); event.stopPropagation(); } @@ -5201,105 +4448,143 @@ jQuery.event = { }, handlers: function( event, handlers ) { - var i, handleObj, sel, matchedHandlers, matchedSelectors, + var i, matches, sel, handleObj, handlerQueue = [], delegateCount = handlers.delegateCount, cur = event.target; // Find delegate handlers - if ( delegateCount && - - // Support: IE <=9 - // Black-hole SVG instance trees (trac-13180) - cur.nodeType && - - // Support: Firefox <=42 - // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861) - // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click - // Support: IE 11 only - // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343) - !( event.type === "click" && event.button >= 1 ) ) { + // Black-hole SVG instance trees (#13180) + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && cur.nodeType && (!event.button || event.type !== "click") ) { for ( ; cur !== this; cur = cur.parentNode || this ) { - // Don't check non-elements (#13208) // Don't process clicks on disabled elements (#6911, #8165, #11382, #11764) - if ( cur.nodeType === 1 && !( event.type === "click" && cur.disabled === true ) ) { - matchedHandlers = []; - matchedSelectors = {}; + if ( cur.disabled !== true || event.type !== "click" ) { + matches = []; for ( i = 0; i < delegateCount; i++ ) { handleObj = handlers[ i ]; - // Don't conflict with Object.prototype property (#13203) + // Don't conflict with Object.prototype properties (#13203) sel = handleObj.selector + " "; - if ( matchedSelectors[ sel ] === undefined ) { - matchedSelectors[ sel ] = handleObj.needsContext ? - jQuery( sel, this ).index( cur ) > -1 : + if ( matches[ sel ] === undefined ) { + matches[ sel ] = handleObj.needsContext ? + jQuery( sel, this ).index( cur ) >= 0 : jQuery.find( sel, this, null, [ cur ] ).length; } - if ( matchedSelectors[ sel ] ) { - matchedHandlers.push( handleObj ); + if ( matches[ sel ] ) { + matches.push( handleObj ); } } - if ( matchedHandlers.length ) { - handlerQueue.push( { elem: cur, handlers: matchedHandlers } ); + if ( matches.length ) { + handlerQueue.push({ elem: cur, handlers: matches }); } } } } // Add the remaining (directly-bound) handlers - cur = this; if ( delegateCount < handlers.length ) { - handlerQueue.push( { elem: cur, handlers: handlers.slice( delegateCount ) } ); + handlerQueue.push({ elem: this, handlers: handlers.slice( delegateCount ) }); } return handlerQueue; }, - addProp: function( name, hook ) { - Object.defineProperty( jQuery.Event.prototype, name, { - enumerable: true, - configurable: true, + // Includes some event props shared by KeyEvent and MouseEvent + props: "altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), - get: isFunction( hook ) ? - function() { - if ( this.originalEvent ) { - return hook( this.originalEvent ); - } - } : - function() { - if ( this.originalEvent ) { - return this.originalEvent[ name ]; - } - }, + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button; - set: function( value ) { - Object.defineProperty( this, name, { - enumerable: true, - configurable: true, - writable: true, - value: value - } ); + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); } - } ); + + return event; + } }, - fix: function( originalEvent ) { - return originalEvent[ jQuery.expando ] ? - originalEvent : - new jQuery.Event( originalEvent ); + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, copy, + type = event.type, + originalEvent = event, + fixHook = this.fixHooks[ type ]; + + if ( !fixHook ) { + this.fixHooks[ type ] = fixHook = + rmouseEvent.test( type ) ? this.mouseHooks : + rkeyEvent.test( type ) ? this.keyHooks : + {}; + } + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = new jQuery.Event( originalEvent ); + + i = copy.length; + while ( i-- ) { + prop = copy[ i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Support: Cordova 2.5 (WebKit) (#13255) + // All events should have a target; Cordova deviceready doesn't + if ( !event.target ) { + event.target = document; + } + + // Support: Safari 6.0+, Chrome<28 + // Target should not be a text node (#504, #13143) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + return fixHook.filter ? fixHook.filter( event, originalEvent ) : event; }, special: { load: { - // Prevent triggered image.load events from bubbling to window.load noBubble: true }, focus: { - // Fire native event if possible so blur/focus sequence is correct trigger: function() { if ( this !== safeActiveElement() && this.focus ) { @@ -5319,10 +4604,9 @@ jQuery.event = { delegateType: "focusout" }, click: { - // For checkbox, fire native event so checked state will be right trigger: function() { - if ( this.type === "checkbox" && this.click && nodeName( this, "input" ) ) { + if ( this.type === "checkbox" && this.click && jQuery.nodeName( this, "input" ) ) { this.click(); return false; } @@ -5330,7 +4614,7 @@ jQuery.event = { // For cross-browser consistency, don't fire native .click() on links _default: function( event ) { - return nodeName( event.target, "a" ); + return jQuery.nodeName( event.target, "a" ); } }, @@ -5344,21 +4628,41 @@ jQuery.event = { } } } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { + type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } } }; jQuery.removeEvent = function( elem, type, handle ) { - - // This "if" is needed for plain objects if ( elem.removeEventListener ) { - elem.removeEventListener( type, handle ); + elem.removeEventListener( type, handle, false ); } }; jQuery.Event = function( src, props ) { - // Allow instantiation without the 'new' keyword - if ( !( this instanceof jQuery.Event ) ) { + if ( !(this instanceof jQuery.Event) ) { return new jQuery.Event( src, props ); } @@ -5371,54 +4675,41 @@ jQuery.Event = function( src, props ) { // by a handler lower down the tree; reflect the correct value. this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && - - // Support: Android <=2.3 only + // Support: Android<4.0 src.returnValue === false ? returnTrue : returnFalse; - // Create target property - // Support: Safari <=6 - 7 only - // Target should not be a text node (#504, #13143) - this.target = ( src.target && src.target.nodeType === 3 ) ? - src.target.parentNode : - src.target; - - this.currentTarget = src.currentTarget; - this.relatedTarget = src.relatedTarget; - // Event type } else { this.type = src; } - // Put explicitly provided property onto the event object + // Put explicitly provided properties onto the event object if ( props ) { jQuery.extend( this, props ); } // Create a timestamp if incoming event doesn't have one - this.timeStamp = src && src.timeStamp || Date.now(); + this.timeStamp = src && src.timeStamp || jQuery.now(); // Mark it as fixed this[ jQuery.expando ] = true; }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding -// https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html jQuery.Event.prototype = { - constructor: jQuery.Event, isDefaultPrevented: returnFalse, isPropagationStopped: returnFalse, isImmediatePropagationStopped: returnFalse, - isSimulated: false, preventDefault: function() { var e = this.originalEvent; this.isDefaultPrevented = returnTrue; - if ( e && !this.isSimulated ) { + if ( e && e.preventDefault ) { e.preventDefault(); } }, @@ -5427,7 +4718,7 @@ jQuery.Event.prototype = { this.isPropagationStopped = returnTrue; - if ( e && !this.isSimulated ) { + if ( e && e.stopPropagation ) { e.stopPropagation(); } }, @@ -5436,7 +4727,7 @@ jQuery.Event.prototype = { this.isImmediatePropagationStopped = returnTrue; - if ( e && !this.isSimulated ) { + if ( e && e.stopImmediatePropagation ) { e.stopImmediatePropagation(); } @@ -5444,76 +4735,9 @@ jQuery.Event.prototype = { } }; -// Includes all common event props including KeyEvent and MouseEvent specific props -jQuery.each( { - altKey: true, - bubbles: true, - cancelable: true, - changedTouches: true, - ctrlKey: true, - detail: true, - eventPhase: true, - metaKey: true, - pageX: true, - pageY: true, - shiftKey: true, - view: true, - "char": true, - charCode: true, - key: true, - keyCode: true, - button: true, - buttons: true, - clientX: true, - clientY: true, - offsetX: true, - offsetY: true, - pointerId: true, - pointerType: true, - screenX: true, - screenY: true, - targetTouches: true, - toElement: true, - touches: true, - - which: function( event ) { - var button = event.button; - - // Add which for key events - if ( event.which == null && rkeyEvent.test( event.type ) ) { - return event.charCode != null ? event.charCode : event.keyCode; - } - - // Add which for click: 1 === left; 2 === middle; 3 === right - if ( !event.which && button !== undefined && rmouseEvent.test( event.type ) ) { - if ( button & 1 ) { - return 1; - } - - if ( button & 2 ) { - return 3; - } - - if ( button & 4 ) { - return 2; - } - - return 0; - } - - return event.which; - } -}, jQuery.event.addProp ); - // Create mouseenter/leave events using mouseover/out and event-time checks -// so that event delegation works in jQuery. -// Do the same for pointerenter/pointerleave and pointerover/pointerout -// -// Support: Safari 7 only -// Safari sends mouseenter too often; see: -// https://bugs.chromium.org/p/chromium/issues/detail?id=470258 -// for the description of the bug (it existed in older Chrome versions as well). -jQuery.each( { +// Support: Chrome 15+ +jQuery.each({ mouseenter: "mouseover", mouseleave: "mouseout", pointerenter: "pointerover", @@ -5529,9 +4753,9 @@ jQuery.each( { related = event.relatedTarget, handleObj = event.handleObj; - // For mouseenter/leave call the handler if related is outside the target. + // For mousenter/leave call the handler if related is outside the target. // NB: No relatedTarget if the mouse left/entered the browser window - if ( !related || ( related !== target && !jQuery.contains( target, related ) ) ) { + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { event.type = handleObj.origType; ret = handleObj.handler.apply( this, arguments ); event.type = fix; @@ -5539,33 +4763,115 @@ jQuery.each( { return ret; } }; -} ); +}); + +// Support: Firefox, Chrome, Safari +// Create "bubbling" focus and blur events +if ( !support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { -jQuery.fn.extend( { + // Attach a single capturing handler on the document while someone wants focusin/focusout + var handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ); + + if ( !attaches ) { + doc.addEventListener( orig, handler, true ); + } + data_priv.access( doc, fix, ( attaches || 0 ) + 1 ); + }, + teardown: function() { + var doc = this.ownerDocument || this, + attaches = data_priv.access( doc, fix ) - 1; + + if ( !attaches ) { + doc.removeEventListener( orig, handler, true ); + data_priv.remove( doc, fix ); + + } else { + data_priv.access( doc, fix, attaches ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } - on: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn ); + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); }, one: function( types, selector, data, fn ) { - return on( this, types, selector, data, fn, 1 ); + return this.on( types, selector, data, fn, 1 ); }, off: function( types, selector, fn ) { var handleObj, type; if ( types && types.preventDefault && types.handleObj ) { - // ( event ) dispatched jQuery.Event handleObj = types.handleObj; jQuery( types.delegateTarget ).off( - handleObj.namespace ? - handleObj.origType + "." + handleObj.namespace : - handleObj.origType, + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler ); return this; } if ( typeof types === "object" ) { - // ( types-object [, selector] ) for ( type in types ) { this.off( type, selector, types[ type ] ); @@ -5573,7 +4879,6 @@ jQuery.fn.extend( { return this; } if ( selector === false || typeof selector === "function" ) { - // ( types [, fn] ) fn = selector; selector = undefined; @@ -5581,57 +4886,96 @@ jQuery.fn.extend( { if ( fn === false ) { fn = returnFalse; } - return this.each( function() { + return this.each(function() { jQuery.event.remove( this, types, fn, selector ); - } ); + }); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + var elem = this[0]; + if ( elem ) { + return jQuery.event.trigger( type, data, elem, true ); + } } -} ); +}); var + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rhtml = /<|&#?\w+;/, + rnoInnerhtml = /<(?:script|style|link)/i, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /^$|\/(?:java|ecma)script/i, + rscriptTypeMasked = /^true\/(.*)/, + rcleanScript = /^\s*\s*$/g, - /* eslint-disable max-len */ + // We have to close these tags to support XHTML (#13200) + wrapMap = { - // See https://github.com/eslint/eslint/issues/3229 - rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([a-z][^\/\0>\x20\t\r\n\f]*)[^>]*)\/>/gi, + // Support: IE9 + option: [ 1, "" ], - /* eslint-enable */ + thead: [ 1, "", "
      " ], + col: [ 2, "", "
      " ], + tr: [ 2, "", "
      " ], + td: [ 3, "", "
      " ], - // Support: IE <=10 - 11, Edge 12 - 13 only - // In IE/Edge using regex groups here causes severe slowdowns. - // See https://connect.microsoft.com/IE/feedback/details/1736512/ - rnoInnerhtml = /\s*$/g; +// Support: IE9 +wrapMap.optgroup = wrapMap.option; -// Prefer a tbody over its parent table for containing new rows -function manipulationTarget( elem, content ) { - if ( nodeName( elem, "table" ) && - nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ) { +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; - return jQuery( elem ).children( "tbody" )[ 0 ] || elem; - } +// Support: 1.x compatibility +// Manipulating tables requires a tbody +function manipulationTarget( elem, content ) { + return jQuery.nodeName( elem, "table" ) && + jQuery.nodeName( content.nodeType !== 11 ? content : content.firstChild, "tr" ) ? - return elem; + elem.getElementsByTagName("tbody")[0] || + elem.appendChild( elem.ownerDocument.createElement("tbody") ) : + elem; } // Replace/restore the type attribute of script elements for safe DOM manipulation function disableScript( elem ) { - elem.type = ( elem.getAttribute( "type" ) !== null ) + "/" + elem.type; + elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type; return elem; } function restoreScript( elem ) { - if ( ( elem.type || "" ).slice( 0, 5 ) === "true/" ) { - elem.type = elem.type.slice( 5 ); + var match = rscriptTypeMasked.exec( elem.type ); + + if ( match ) { + elem.type = match[ 1 ]; } else { - elem.removeAttribute( "type" ); + elem.removeAttribute("type"); } return elem; } +// Mark scripts as having already been evaluated +function setGlobalEval( elems, refElements ) { + var i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + data_priv.set( + elems[ i ], "globalEval", !refElements || data_priv.get( refElements[ i ], "globalEval" ) + ); + } +} + function cloneCopyEvent( src, dest ) { var i, l, type, pdataOld, pdataCur, udataOld, udataCur, events; @@ -5640,9 +4984,9 @@ function cloneCopyEvent( src, dest ) { } // 1. Copy private data: events, handlers, etc. - if ( dataPriv.hasData( src ) ) { - pdataOld = dataPriv.access( src ); - pdataCur = dataPriv.set( dest, pdataOld ); + if ( data_priv.hasData( src ) ) { + pdataOld = data_priv.access( src ); + pdataCur = data_priv.set( dest, pdataOld ); events = pdataOld.events; if ( events ) { @@ -5658,14 +5002,24 @@ function cloneCopyEvent( src, dest ) { } // 2. Copy user data - if ( dataUser.hasData( src ) ) { - udataOld = dataUser.access( src ); + if ( data_user.hasData( src ) ) { + udataOld = data_user.access( src ); udataCur = jQuery.extend( {}, udataOld ); - dataUser.set( dest, udataCur ); + data_user.set( dest, udataCur ); } } +function getAll( context, tag ) { + var ret = context.getElementsByTagName ? context.getElementsByTagName( tag || "*" ) : + context.querySelectorAll ? context.querySelectorAll( tag || "*" ) : + []; + + return tag === undefined || tag && jQuery.nodeName( context, tag ) ? + jQuery.merge( [ context ], ret ) : + ret; +} + // Fix IE bugs, see support tests function fixInput( src, dest ) { var nodeName = dest.nodeName.toLowerCase(); @@ -5680,122 +5034,7 @@ function fixInput( src, dest ) { } } -function domManip( collection, args, callback, ignored ) { - - // Flatten any nested arrays - args = concat.apply( [], args ); - - var fragment, first, scripts, hasScripts, node, doc, - i = 0, - l = collection.length, - iNoClone = l - 1, - value = args[ 0 ], - valueIsFunction = isFunction( value ); - - // We can't cloneNode fragments that contain checked, in WebKit - if ( valueIsFunction || - ( l > 1 && typeof value === "string" && - !support.checkClone && rchecked.test( value ) ) ) { - return collection.each( function( index ) { - var self = collection.eq( index ); - if ( valueIsFunction ) { - args[ 0 ] = value.call( this, index, self.html() ); - } - domManip( self, args, callback, ignored ); - } ); - } - - if ( l ) { - fragment = buildFragment( args, collection[ 0 ].ownerDocument, false, collection, ignored ); - first = fragment.firstChild; - - if ( fragment.childNodes.length === 1 ) { - fragment = first; - } - - // Require either new content or an interest in ignored elements to invoke the callback - if ( first || ignored ) { - scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); - hasScripts = scripts.length; - - // Use the original fragment for the last item - // instead of the first because it can end up - // being emptied incorrectly in certain situations (#8070). - for ( ; i < l; i++ ) { - node = fragment; - - if ( i !== iNoClone ) { - node = jQuery.clone( node, true, true ); - - // Keep references to cloned scripts for later restoration - if ( hasScripts ) { - - // Support: Android <=4.0 only, PhantomJS 1 only - // push.apply(_, arraylike) throws on ancient WebKit - jQuery.merge( scripts, getAll( node, "script" ) ); - } - } - - callback.call( collection[ i ], node, i ); - } - - if ( hasScripts ) { - doc = scripts[ scripts.length - 1 ].ownerDocument; - - // Reenable scripts - jQuery.map( scripts, restoreScript ); - - // Evaluate executable scripts on first document insertion - for ( i = 0; i < hasScripts; i++ ) { - node = scripts[ i ]; - if ( rscriptType.test( node.type || "" ) && - !dataPriv.access( node, "globalEval" ) && - jQuery.contains( doc, node ) ) { - - if ( node.src && ( node.type || "" ).toLowerCase() !== "module" ) { - - // Optional AJAX dependency, but won't run scripts if not present - if ( jQuery._evalUrl ) { - jQuery._evalUrl( node.src ); - } - } else { - DOMEval( node.textContent.replace( rcleanScript, "" ), doc, node ); - } - } - } - } - } - } - - return collection; -} - -function remove( elem, selector, keepData ) { - var node, - nodes = selector ? jQuery.filter( selector, elem ) : elem, - i = 0; - - for ( ; ( node = nodes[ i ] ) != null; i++ ) { - if ( !keepData && node.nodeType === 1 ) { - jQuery.cleanData( getAll( node ) ); - } - - if ( node.parentNode ) { - if ( keepData && jQuery.contains( node.ownerDocument, node ) ) { - setGlobalEval( getAll( node, "script" ) ); - } - node.parentNode.removeChild( node ); - } - } - - return elem; -} - -jQuery.extend( { - htmlPrefilter: function( html ) { - return html.replace( rxhtmlTag, "<$1>" ); - }, - +jQuery.extend({ clone: function( elem, dataAndEvents, deepDataAndEvents ) { var i, l, srcElements, destElements, clone = elem.cloneNode( true ), @@ -5805,7 +5044,7 @@ jQuery.extend( { if ( !support.noCloneChecked && ( elem.nodeType === 1 || elem.nodeType === 11 ) && !jQuery.isXMLDoc( elem ) ) { - // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2 + // We eschew Sizzle here for performance reasons: http://jsperf.com/getall-vs-sizzle/2 destElements = getAll( clone ); srcElements = getAll( elem ); @@ -5838,14 +5077,102 @@ jQuery.extend( { return clone; }, + buildFragment: function( elems, context, scripts, selection ) { + var elem, tmp, tag, wrap, contains, j, + fragment = context.createDocumentFragment(), + nodes = [], + i = 0, + l = elems.length; + + for ( ; i < l; i++ ) { + elem = elems[ i ]; + + if ( elem || elem === 0 ) { + + // Add nodes directly + if ( jQuery.type( elem ) === "object" ) { + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, elem.nodeType ? [ elem ] : elem ); + + // Convert non-html into a text node + } else if ( !rhtml.test( elem ) ) { + nodes.push( context.createTextNode( elem ) ); + + // Convert html into DOM nodes + } else { + tmp = tmp || fragment.appendChild( context.createElement("div") ); + + // Deserialize a standard representation + tag = ( rtagName.exec( elem ) || [ "", "" ] )[ 1 ].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + tmp.innerHTML = wrap[ 1 ] + elem.replace( rxhtmlTag, "<$1>" ) + wrap[ 2 ]; + + // Descend through wrappers to the right content + j = wrap[ 0 ]; + while ( j-- ) { + tmp = tmp.lastChild; + } + + // Support: QtWebKit, PhantomJS + // push.apply(_, arraylike) throws on ancient WebKit + jQuery.merge( nodes, tmp.childNodes ); + + // Remember the top-level container + tmp = fragment.firstChild; + + // Ensure the created nodes are orphaned (#12392) + tmp.textContent = ""; + } + } + } + + // Remove wrapper from fragment + fragment.textContent = ""; + + i = 0; + while ( (elem = nodes[ i++ ]) ) { + + // #4087 - If origin and destination elements are the same, and this is + // that element, do not do anything + if ( selection && jQuery.inArray( elem, selection ) !== -1 ) { + continue; + } + + contains = jQuery.contains( elem.ownerDocument, elem ); + + // Append to fragment + tmp = getAll( fragment.appendChild( elem ), "script" ); + + // Preserve script evaluation history + if ( contains ) { + setGlobalEval( tmp ); + } + + // Capture executables + if ( scripts ) { + j = 0; + while ( (elem = tmp[ j++ ]) ) { + if ( rscriptType.test( elem.type || "" ) ) { + scripts.push( elem ); + } + } + } + } + + return fragment; + }, + cleanData: function( elems ) { - var data, elem, type, + var data, elem, type, key, special = jQuery.event.special, i = 0; - for ( ; ( elem = elems[ i ] ) !== undefined; i++ ) { - if ( acceptData( elem ) ) { - if ( ( data = elem[ dataPriv.expando ] ) ) { + for ( ; (elem = elems[ i ]) !== undefined; i++ ) { + if ( jQuery.acceptData( elem ) ) { + key = elem[ data_priv.expando ]; + + if ( key && (data = data_priv.cache[ key ]) ) { if ( data.events ) { for ( type in data.events ) { if ( special[ type ] ) { @@ -5857,82 +5184,91 @@ jQuery.extend( { } } } - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataPriv.expando ] = undefined; - } - if ( elem[ dataUser.expando ] ) { - - // Support: Chrome <=35 - 45+ - // Assign undefined instead of using delete, see Data#remove - elem[ dataUser.expando ] = undefined; + if ( data_priv.cache[ key ] ) { + // Discard any remaining `private` data + delete data_priv.cache[ key ]; + } } } + // Discard any remaining `user` data + delete data_user.cache[ elem[ data_user.expando ] ]; } } -} ); - -jQuery.fn.extend( { - detach: function( selector ) { - return remove( this, selector, true ); - }, - - remove: function( selector ) { - return remove( this, selector ); - }, +}); +jQuery.fn.extend({ text: function( value ) { return access( this, function( value ) { return value === undefined ? jQuery.text( this ) : - this.empty().each( function() { + this.empty().each(function() { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { this.textContent = value; } - } ); + }); }, null, value, arguments.length ); }, append: function() { - return domManip( this, arguments, function( elem ) { + return this.domManip( arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.appendChild( elem ); } - } ); + }); }, prepend: function() { - return domManip( this, arguments, function( elem ) { + return this.domManip( arguments, function( elem ) { if ( this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9 ) { var target = manipulationTarget( this, elem ); target.insertBefore( elem, target.firstChild ); } - } ); + }); }, before: function() { - return domManip( this, arguments, function( elem ) { + return this.domManip( arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this ); } - } ); + }); }, after: function() { - return domManip( this, arguments, function( elem ) { + return this.domManip( arguments, function( elem ) { if ( this.parentNode ) { this.parentNode.insertBefore( elem, this.nextSibling ); } - } ); + }); + }, + + remove: function( selector, keepData /* Internal Use Only */ ) { + var elem, + elems = selector ? jQuery.filter( selector, this ) : this, + i = 0; + + for ( ; (elem = elems[i]) != null; i++ ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( getAll( elem ) ); + } + + if ( elem.parentNode ) { + if ( keepData && jQuery.contains( elem.ownerDocument, elem ) ) { + setGlobalEval( getAll( elem, "script" ) ); + } + elem.parentNode.removeChild( elem ); + } + } + + return this; }, empty: function() { var elem, i = 0; - for ( ; ( elem = this[ i ] ) != null; i++ ) { + for ( ; (elem = this[i]) != null; i++ ) { if ( elem.nodeType === 1 ) { // Prevent memory leaks @@ -5950,9 +5286,9 @@ jQuery.fn.extend( { dataAndEvents = dataAndEvents == null ? false : dataAndEvents; deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; - return this.map( function() { + return this.map(function() { return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); - } ); + }); }, html: function( value ) { @@ -5969,7 +5305,7 @@ jQuery.fn.extend( { if ( typeof value === "string" && !rnoInnerhtml.test( value ) && !wrapMap[ ( rtagName.exec( value ) || [ "", "" ] )[ 1 ].toLowerCase() ] ) { - value = jQuery.htmlPrefilter( value ); + value = value.replace( rxhtmlTag, "<$1>" ); try { for ( ; i < l; i++ ) { @@ -5985,7 +5321,7 @@ jQuery.fn.extend( { elem = 0; // If using innerHTML throws an exception, use the fallback method - } catch ( e ) {} + } catch( e ) {} } if ( elem ) { @@ -5995,25 +5331,115 @@ jQuery.fn.extend( { }, replaceWith: function() { - var ignored = []; + var arg = arguments[ 0 ]; + + // Make the changes, replacing each context element with the new content + this.domManip( arguments, function( elem ) { + arg = this.parentNode; + + jQuery.cleanData( getAll( this ) ); + + if ( arg ) { + arg.replaceChild( elem, this ); + } + }); + + // Force removal if there was no new content (e.g., from empty arguments) + return arg && (arg.length || arg.nodeType) ? this : this.remove(); + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, callback ) { + + // Flatten any nested arrays + args = concat.apply( [], args ); + + var fragment, first, scripts, hasScripts, node, doc, + i = 0, + l = this.length, + set = this, + iNoClone = l - 1, + value = args[ 0 ], + isFunction = jQuery.isFunction( value ); + + // We can't cloneNode fragments that contain checked, in WebKit + if ( isFunction || + ( l > 1 && typeof value === "string" && + !support.checkClone && rchecked.test( value ) ) ) { + return this.each(function( index ) { + var self = set.eq( index ); + if ( isFunction ) { + args[ 0 ] = value.call( this, index, self.html() ); + } + self.domManip( args, callback ); + }); + } + + if ( l ) { + fragment = jQuery.buildFragment( args, this[ 0 ].ownerDocument, false, this ); + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + scripts = jQuery.map( getAll( fragment, "script" ), disableScript ); + hasScripts = scripts.length; + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + for ( ; i < l; i++ ) { + node = fragment; + + if ( i !== iNoClone ) { + node = jQuery.clone( node, true, true ); + + // Keep references to cloned scripts for later restoration + if ( hasScripts ) { + // Support: QtWebKit + // jQuery.merge because push.apply(_, arraylike) throws + jQuery.merge( scripts, getAll( node, "script" ) ); + } + } + + callback.call( this[ i ], node, i ); + } + + if ( hasScripts ) { + doc = scripts[ scripts.length - 1 ].ownerDocument; - // Make the changes, replacing each non-ignored context element with the new content - return domManip( this, arguments, function( elem ) { - var parent = this.parentNode; + // Reenable scripts + jQuery.map( scripts, restoreScript ); - if ( jQuery.inArray( this, ignored ) < 0 ) { - jQuery.cleanData( getAll( this ) ); - if ( parent ) { - parent.replaceChild( elem, this ); + // Evaluate executable scripts on first document insertion + for ( i = 0; i < hasScripts; i++ ) { + node = scripts[ i ]; + if ( rscriptType.test( node.type || "" ) && + !data_priv.access( node, "globalEval" ) && jQuery.contains( doc, node ) ) { + + if ( node.src ) { + // Optional AJAX dependency, but won't run scripts if not present + if ( jQuery._evalUrl ) { + jQuery._evalUrl( node.src ); + } + } else { + jQuery.globalEval( node.textContent.replace( rcleanScript, "" ) ); + } + } + } } } + } - // Force callback invocation - }, ignored ); + return this; } -} ); +}); -jQuery.each( { +jQuery.each({ appendTo: "append", prependTo: "prepend", insertBefore: "before", @@ -6031,152 +5457,117 @@ jQuery.each( { elems = i === last ? this : this.clone( true ); jQuery( insert[ i ] )[ original ]( elems ); - // Support: Android <=4.0 only, PhantomJS 1 only - // .get() because push.apply(_, arraylike) throws on ancient WebKit + // Support: QtWebKit + // .get() because push.apply(_, arraylike) throws push.apply( ret, elems.get() ); } return this.pushStack( ret ); }; -} ); -var rnumnonpx = new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); - -var getStyles = function( elem ) { - - // Support: IE <=11 only, Firefox <=30 (#15098, #14150) - // IE throws on elements created in popups - // FF meanwhile throws on frame elements through "defaultView.getComputedStyle" - var view = elem.ownerDocument.defaultView; - - if ( !view || !view.opener ) { - view = window; - } +}); - return view.getComputedStyle( elem ); - }; -var rboxStyle = new RegExp( cssExpand.join( "|" ), "i" ); +var iframe, + elemdisplay = {}; +/** + * Retrieve the actual display of a element + * @param {String} name nodeName of the element + * @param {Object} doc Document object + */ +// Called only from within defaultDisplay +function actualDisplay( name, doc ) { + var style, + elem = jQuery( doc.createElement( name ) ).appendTo( doc.body ), + // getDefaultComputedStyle might be reliably used only on attached element + display = window.getDefaultComputedStyle && ( style = window.getDefaultComputedStyle( elem[ 0 ] ) ) ? -( function() { + // Use of this method is a temporary fix (more like optimization) until something better comes along, + // since it was removed from specification and supported only in FF + style.display : jQuery.css( elem[ 0 ], "display" ); - // Executing both pixelPosition & boxSizingReliable tests require only one layout - // so they're executed at the same time to save the second computation. - function computeStyleTests() { + // We don't have any data stored on the element, + // so use "detach" method as fast way to get rid of the element + elem.detach(); - // This is a singleton, we need to execute it only once - if ( !div ) { - return; - } + return display; +} - container.style.cssText = "position:absolute;left:-11111px;width:60px;" + - "margin-top:1px;padding:0;border:0"; - div.style.cssText = - "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + - "margin:auto;border:1px;padding:1px;" + - "width:60%;top:1%"; - documentElement.appendChild( container ).appendChild( div ); +/** + * Try to determine the default display value of an element + * @param {String} nodeName + */ +function defaultDisplay( nodeName ) { + var doc = document, + display = elemdisplay[ nodeName ]; - var divStyle = window.getComputedStyle( div ); - pixelPositionVal = divStyle.top !== "1%"; + if ( !display ) { + display = actualDisplay( nodeName, doc ); - // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44 - reliableMarginLeftVal = roundPixelMeasures( divStyle.marginLeft ) === 12; + // If the simple way fails, read from inside an iframe + if ( display === "none" || !display ) { - // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3 - // Some styles come back with percentage values, even though they shouldn't - div.style.right = "60%"; - pixelBoxStylesVal = roundPixelMeasures( divStyle.right ) === 36; + // Use the already-created iframe if possible + iframe = (iframe || jQuery( "