objects.js 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /**
  2. * Copyright [2022] [https://www.xiaonuo.vip]
  3. * Snowy采用APACHE LICENSE 2.0开源协议,您在使用过程中,需要注意以下几点:
  4. * 1.请不要删除和修改根目录下的LICENSE文件。
  5. * 2.请不要删除和修改Snowy源码头部的版权声明。
  6. * 3.本项目代码可免费商业使用,商业使用请保留源码和相关描述文件的项目出处,作者声明等。
  7. * 4.分发源码时候,请注明软件出处 https://www.xiaonuo.vip
  8. * 5.不可二次分发开源参与同类竞品,如有想法可联系团队xiaonuobase@qq.com商议合作。
  9. * 6.若您的项目无法满足以上几点,需要更多功能代码,获取Snowy商业授权许可,请在官网购买授权,地址为 https://www.xiaonuo.vip
  10. */
  11. import pinyin from 'js-pinyin'
  12. // 中文转拼音 传入仅首字母
  13. Object.defineProperty(String.prototype, 'toPinyin', {
  14. writable: false,
  15. enumerable: false,
  16. configurable: true,
  17. value: function (first) {
  18. let str = this
  19. if (first) {
  20. return pinyin.getCamelChars(str).replace(/\uD83C[\uDF00-\uDFFF]|\uD83D[\uDC00-\uDE4F]/g, '')
  21. }
  22. return pinyin.getFullChars(str).replace(/\uD83C[\uDF00-\uDFFF]|\uD83D[\uDC00-\uDE4F]/g, '')
  23. }
  24. })
  25. // 字符检索 传入检索值
  26. Object.defineProperty(String.prototype, 'filter', {
  27. writable: false,
  28. enumerable: false,
  29. configurable: true,
  30. value: function (input) {
  31. let str = this
  32. let en = str.toLowerCase().includes(input.toLowerCase())
  33. let zhFull = str.toPinyin().toLowerCase().includes(input.toLowerCase())
  34. let zhFirst = str.toPinyin(true).toLowerCase().includes(input.toLowerCase())
  35. return en || zhFull || zhFirst
  36. }
  37. })