popover.js 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  1. module.exports =
  2. /******/ (function(modules) { // webpackBootstrap
  3. /******/ // The module cache
  4. /******/ var installedModules = {};
  5. /******/
  6. /******/ // The require function
  7. /******/ function __webpack_require__(moduleId) {
  8. /******/
  9. /******/ // Check if module is in cache
  10. /******/ if(installedModules[moduleId]) {
  11. /******/ return installedModules[moduleId].exports;
  12. /******/ }
  13. /******/ // Create a new module (and put it into the cache)
  14. /******/ var module = installedModules[moduleId] = {
  15. /******/ i: moduleId,
  16. /******/ l: false,
  17. /******/ exports: {}
  18. /******/ };
  19. /******/
  20. /******/ // Execute the module function
  21. /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__);
  22. /******/
  23. /******/ // Flag the module as loaded
  24. /******/ module.l = true;
  25. /******/
  26. /******/ // Return the exports of the module
  27. /******/ return module.exports;
  28. /******/ }
  29. /******/
  30. /******/
  31. /******/ // expose the modules object (__webpack_modules__)
  32. /******/ __webpack_require__.m = modules;
  33. /******/
  34. /******/ // expose the module cache
  35. /******/ __webpack_require__.c = installedModules;
  36. /******/
  37. /******/ // define getter function for harmony exports
  38. /******/ __webpack_require__.d = function(exports, name, getter) {
  39. /******/ if(!__webpack_require__.o(exports, name)) {
  40. /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
  41. /******/ }
  42. /******/ };
  43. /******/
  44. /******/ // define __esModule on exports
  45. /******/ __webpack_require__.r = function(exports) {
  46. /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
  47. /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
  48. /******/ }
  49. /******/ Object.defineProperty(exports, '__esModule', { value: true });
  50. /******/ };
  51. /******/
  52. /******/ // create a fake namespace object
  53. /******/ // mode & 1: value is a module id, require it
  54. /******/ // mode & 2: merge all properties of value into the ns
  55. /******/ // mode & 4: return value when already ns object
  56. /******/ // mode & 8|1: behave like require
  57. /******/ __webpack_require__.t = function(value, mode) {
  58. /******/ if(mode & 1) value = __webpack_require__(value);
  59. /******/ if(mode & 8) return value;
  60. /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
  61. /******/ var ns = Object.create(null);
  62. /******/ __webpack_require__.r(ns);
  63. /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
  64. /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
  65. /******/ return ns;
  66. /******/ };
  67. /******/
  68. /******/ // getDefaultExport function for compatibility with non-harmony modules
  69. /******/ __webpack_require__.n = function(module) {
  70. /******/ var getter = module && module.__esModule ?
  71. /******/ function getDefault() { return module['default']; } :
  72. /******/ function getModuleExports() { return module; };
  73. /******/ __webpack_require__.d(getter, 'a', getter);
  74. /******/ return getter;
  75. /******/ };
  76. /******/
  77. /******/ // Object.prototype.hasOwnProperty.call
  78. /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
  79. /******/
  80. /******/ // __webpack_public_path__
  81. /******/ __webpack_require__.p = "/dist/";
  82. /******/
  83. /******/
  84. /******/ // Load entry module and return exports
  85. /******/ return __webpack_require__(__webpack_require__.s = 74);
  86. /******/ })
  87. /************************************************************************/
  88. /******/ ({
  89. /***/ 0:
  90. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  91. "use strict";
  92. /* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "a", function() { return normalizeComponent; });
  93. /* globals __VUE_SSR_CONTEXT__ */
  94. // IMPORTANT: Do NOT use ES2015 features in this file (except for modules).
  95. // This module is a runtime utility for cleaner component module output and will
  96. // be included in the final webpack user bundle.
  97. function normalizeComponent (
  98. scriptExports,
  99. render,
  100. staticRenderFns,
  101. functionalTemplate,
  102. injectStyles,
  103. scopeId,
  104. moduleIdentifier, /* server only */
  105. shadowMode /* vue-cli only */
  106. ) {
  107. // Vue.extend constructor export interop
  108. var options = typeof scriptExports === 'function'
  109. ? scriptExports.options
  110. : scriptExports
  111. // render functions
  112. if (render) {
  113. options.render = render
  114. options.staticRenderFns = staticRenderFns
  115. options._compiled = true
  116. }
  117. // functional template
  118. if (functionalTemplate) {
  119. options.functional = true
  120. }
  121. // scopedId
  122. if (scopeId) {
  123. options._scopeId = 'data-v-' + scopeId
  124. }
  125. var hook
  126. if (moduleIdentifier) { // server build
  127. hook = function (context) {
  128. // 2.3 injection
  129. context =
  130. context || // cached call
  131. (this.$vnode && this.$vnode.ssrContext) || // stateful
  132. (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional
  133. // 2.2 with runInNewContext: true
  134. if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {
  135. context = __VUE_SSR_CONTEXT__
  136. }
  137. // inject component styles
  138. if (injectStyles) {
  139. injectStyles.call(this, context)
  140. }
  141. // register component module identifier for async chunk inferrence
  142. if (context && context._registeredComponents) {
  143. context._registeredComponents.add(moduleIdentifier)
  144. }
  145. }
  146. // used by ssr in case component is cached and beforeCreate
  147. // never gets called
  148. options._ssrRegister = hook
  149. } else if (injectStyles) {
  150. hook = shadowMode
  151. ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }
  152. : injectStyles
  153. }
  154. if (hook) {
  155. if (options.functional) {
  156. // for template-only hot-reload because in that case the render fn doesn't
  157. // go through the normalizer
  158. options._injectStyles = hook
  159. // register for functioal component in vue file
  160. var originalRender = options.render
  161. options.render = function renderWithStyleInjection (h, context) {
  162. hook.call(context)
  163. return originalRender(h, context)
  164. }
  165. } else {
  166. // inject component registration as beforeCreate hook
  167. var existing = options.beforeCreate
  168. options.beforeCreate = existing
  169. ? [].concat(existing, hook)
  170. : [hook]
  171. }
  172. }
  173. return {
  174. exports: scriptExports,
  175. options: options
  176. }
  177. }
  178. /***/ }),
  179. /***/ 2:
  180. /***/ (function(module, exports) {
  181. module.exports = require("element-ui/lib/utils/dom");
  182. /***/ }),
  183. /***/ 3:
  184. /***/ (function(module, exports) {
  185. module.exports = require("element-ui/lib/utils/util");
  186. /***/ }),
  187. /***/ 5:
  188. /***/ (function(module, exports) {
  189. module.exports = require("element-ui/lib/utils/vue-popper");
  190. /***/ }),
  191. /***/ 7:
  192. /***/ (function(module, exports) {
  193. module.exports = require("vue");
  194. /***/ }),
  195. /***/ 74:
  196. /***/ (function(module, __webpack_exports__, __webpack_require__) {
  197. "use strict";
  198. __webpack_require__.r(__webpack_exports__);
  199. // CONCATENATED MODULE: ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./packages/popover/src/main.vue?vue&type=template&id=52060272&
  200. var render = function() {
  201. var _vm = this
  202. var _h = _vm.$createElement
  203. var _c = _vm._self._c || _h
  204. return _c(
  205. "span",
  206. [
  207. _c(
  208. "transition",
  209. {
  210. attrs: { name: _vm.transition },
  211. on: {
  212. "after-enter": _vm.handleAfterEnter,
  213. "after-leave": _vm.handleAfterLeave
  214. }
  215. },
  216. [
  217. _c(
  218. "div",
  219. {
  220. directives: [
  221. {
  222. name: "show",
  223. rawName: "v-show",
  224. value: !_vm.disabled && _vm.showPopper,
  225. expression: "!disabled && showPopper"
  226. }
  227. ],
  228. ref: "popper",
  229. staticClass: "el-popover el-popper",
  230. class: [_vm.popperClass, _vm.content && "el-popover--plain"],
  231. style: { width: _vm.width + "px" },
  232. attrs: {
  233. role: "tooltip",
  234. id: _vm.tooltipId,
  235. "aria-hidden":
  236. _vm.disabled || !_vm.showPopper ? "true" : "false"
  237. }
  238. },
  239. [
  240. _vm.title
  241. ? _c("div", {
  242. staticClass: "el-popover__title",
  243. domProps: { textContent: _vm._s(_vm.title) }
  244. })
  245. : _vm._e(),
  246. _vm._t("default", [_vm._v(_vm._s(_vm.content))])
  247. ],
  248. 2
  249. )
  250. ]
  251. ),
  252. _vm._t("reference")
  253. ],
  254. 2
  255. )
  256. }
  257. var staticRenderFns = []
  258. render._withStripped = true
  259. // CONCATENATED MODULE: ./packages/popover/src/main.vue?vue&type=template&id=52060272&
  260. // EXTERNAL MODULE: external "element-ui/lib/utils/vue-popper"
  261. var vue_popper_ = __webpack_require__(5);
  262. var vue_popper_default = /*#__PURE__*/__webpack_require__.n(vue_popper_);
  263. // EXTERNAL MODULE: external "element-ui/lib/utils/dom"
  264. var dom_ = __webpack_require__(2);
  265. // EXTERNAL MODULE: external "element-ui/lib/utils/util"
  266. var util_ = __webpack_require__(3);
  267. // CONCATENATED MODULE: ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./packages/popover/src/main.vue?vue&type=script&lang=js&
  268. //
  269. //
  270. //
  271. //
  272. //
  273. //
  274. //
  275. //
  276. //
  277. //
  278. //
  279. //
  280. //
  281. //
  282. //
  283. //
  284. //
  285. //
  286. //
  287. //
  288. //
  289. //
  290. //
  291. /* harmony default export */ var mainvue_type_script_lang_js_ = ({
  292. name: 'ElPopover',
  293. mixins: [vue_popper_default.a],
  294. props: {
  295. trigger: {
  296. type: String,
  297. default: 'click',
  298. validator: function validator(value) {
  299. return ['click', 'focus', 'hover', 'manual'].indexOf(value) > -1;
  300. }
  301. },
  302. openDelay: {
  303. type: Number,
  304. default: 0
  305. },
  306. closeDelay: {
  307. type: Number,
  308. default: 200
  309. },
  310. title: String,
  311. disabled: Boolean,
  312. content: String,
  313. reference: {},
  314. popperClass: String,
  315. width: {},
  316. visibleArrow: {
  317. default: true
  318. },
  319. arrowOffset: {
  320. type: Number,
  321. default: 0
  322. },
  323. transition: {
  324. type: String,
  325. default: 'fade-in-linear'
  326. },
  327. tabindex: {
  328. type: Number,
  329. default: 0
  330. }
  331. },
  332. computed: {
  333. tooltipId: function tooltipId() {
  334. return 'el-popover-' + Object(util_["generateId"])();
  335. }
  336. },
  337. watch: {
  338. showPopper: function showPopper(val) {
  339. if (this.disabled) {
  340. return;
  341. }
  342. val ? this.$emit('show') : this.$emit('hide');
  343. }
  344. },
  345. mounted: function mounted() {
  346. var _this = this;
  347. var reference = this.referenceElm = this.reference || this.$refs.reference;
  348. var popper = this.popper || this.$refs.popper;
  349. if (!reference && this.$slots.reference && this.$slots.reference[0]) {
  350. reference = this.referenceElm = this.$slots.reference[0].elm;
  351. }
  352. // 可访问性
  353. if (reference) {
  354. Object(dom_["addClass"])(reference, 'el-popover__reference');
  355. reference.setAttribute('aria-describedby', this.tooltipId);
  356. reference.setAttribute('tabindex', this.tabindex); // tab序列
  357. popper.setAttribute('tabindex', 0);
  358. if (this.trigger !== 'click') {
  359. Object(dom_["on"])(reference, 'focusin', function () {
  360. _this.handleFocus();
  361. var instance = reference.__vue__;
  362. if (instance && typeof instance.focus === 'function') {
  363. instance.focus();
  364. }
  365. });
  366. Object(dom_["on"])(popper, 'focusin', this.handleFocus);
  367. Object(dom_["on"])(reference, 'focusout', this.handleBlur);
  368. Object(dom_["on"])(popper, 'focusout', this.handleBlur);
  369. }
  370. Object(dom_["on"])(reference, 'keydown', this.handleKeydown);
  371. Object(dom_["on"])(reference, 'click', this.handleClick);
  372. }
  373. if (this.trigger === 'click') {
  374. Object(dom_["on"])(reference, 'click', this.doToggle);
  375. Object(dom_["on"])(document, 'click', this.handleDocumentClick);
  376. } else if (this.trigger === 'hover') {
  377. Object(dom_["on"])(reference, 'mouseenter', this.handleMouseEnter);
  378. Object(dom_["on"])(popper, 'mouseenter', this.handleMouseEnter);
  379. Object(dom_["on"])(reference, 'mouseleave', this.handleMouseLeave);
  380. Object(dom_["on"])(popper, 'mouseleave', this.handleMouseLeave);
  381. } else if (this.trigger === 'focus') {
  382. if (this.tabindex < 0) {
  383. console.warn('[Element Warn][Popover]a negative taindex means that the element cannot be focused by tab key');
  384. }
  385. if (reference.querySelector('input, textarea')) {
  386. Object(dom_["on"])(reference, 'focusin', this.doShow);
  387. Object(dom_["on"])(reference, 'focusout', this.doClose);
  388. } else {
  389. Object(dom_["on"])(reference, 'mousedown', this.doShow);
  390. Object(dom_["on"])(reference, 'mouseup', this.doClose);
  391. }
  392. }
  393. },
  394. beforeDestroy: function beforeDestroy() {
  395. this.cleanup();
  396. },
  397. deactivated: function deactivated() {
  398. this.cleanup();
  399. },
  400. methods: {
  401. doToggle: function doToggle() {
  402. this.showPopper = !this.showPopper;
  403. },
  404. doShow: function doShow() {
  405. this.showPopper = true;
  406. },
  407. doClose: function doClose() {
  408. this.showPopper = false;
  409. },
  410. handleFocus: function handleFocus() {
  411. Object(dom_["addClass"])(this.referenceElm, 'focusing');
  412. if (this.trigger === 'click' || this.trigger === 'focus') this.showPopper = true;
  413. },
  414. handleClick: function handleClick() {
  415. Object(dom_["removeClass"])(this.referenceElm, 'focusing');
  416. },
  417. handleBlur: function handleBlur() {
  418. Object(dom_["removeClass"])(this.referenceElm, 'focusing');
  419. if (this.trigger === 'click' || this.trigger === 'focus') this.showPopper = false;
  420. },
  421. handleMouseEnter: function handleMouseEnter() {
  422. var _this2 = this;
  423. clearTimeout(this._timer);
  424. if (this.openDelay) {
  425. this._timer = setTimeout(function () {
  426. _this2.showPopper = true;
  427. }, this.openDelay);
  428. } else {
  429. this.showPopper = true;
  430. }
  431. },
  432. handleKeydown: function handleKeydown(ev) {
  433. if (ev.keyCode === 27 && this.trigger !== 'manual') {
  434. // esc
  435. this.doClose();
  436. }
  437. },
  438. handleMouseLeave: function handleMouseLeave() {
  439. var _this3 = this;
  440. clearTimeout(this._timer);
  441. if (this.closeDelay) {
  442. this._timer = setTimeout(function () {
  443. _this3.showPopper = false;
  444. }, this.closeDelay);
  445. } else {
  446. this.showPopper = false;
  447. }
  448. },
  449. handleDocumentClick: function handleDocumentClick(e) {
  450. var reference = this.reference || this.$refs.reference;
  451. var popper = this.popper || this.$refs.popper;
  452. if (!reference && this.$slots.reference && this.$slots.reference[0]) {
  453. reference = this.referenceElm = this.$slots.reference[0].elm;
  454. }
  455. if (!this.$el || !reference || this.$el.contains(e.target) || reference.contains(e.target) || !popper || popper.contains(e.target)) return;
  456. this.showPopper = false;
  457. },
  458. handleAfterEnter: function handleAfterEnter() {
  459. this.$emit('after-enter');
  460. },
  461. handleAfterLeave: function handleAfterLeave() {
  462. this.$emit('after-leave');
  463. this.doDestroy();
  464. },
  465. cleanup: function cleanup() {
  466. if (this.openDelay || this.closeDelay) {
  467. clearTimeout(this._timer);
  468. }
  469. }
  470. },
  471. destroyed: function destroyed() {
  472. var reference = this.reference;
  473. Object(dom_["off"])(reference, 'click', this.doToggle);
  474. Object(dom_["off"])(reference, 'mouseup', this.doClose);
  475. Object(dom_["off"])(reference, 'mousedown', this.doShow);
  476. Object(dom_["off"])(reference, 'focusin', this.doShow);
  477. Object(dom_["off"])(reference, 'focusout', this.doClose);
  478. Object(dom_["off"])(reference, 'mousedown', this.doShow);
  479. Object(dom_["off"])(reference, 'mouseup', this.doClose);
  480. Object(dom_["off"])(reference, 'mouseleave', this.handleMouseLeave);
  481. Object(dom_["off"])(reference, 'mouseenter', this.handleMouseEnter);
  482. Object(dom_["off"])(document, 'click', this.handleDocumentClick);
  483. }
  484. });
  485. // CONCATENATED MODULE: ./packages/popover/src/main.vue?vue&type=script&lang=js&
  486. /* harmony default export */ var src_mainvue_type_script_lang_js_ = (mainvue_type_script_lang_js_);
  487. // EXTERNAL MODULE: ./node_modules/vue-loader/lib/runtime/componentNormalizer.js
  488. var componentNormalizer = __webpack_require__(0);
  489. // CONCATENATED MODULE: ./packages/popover/src/main.vue
  490. /* normalize component */
  491. var component = Object(componentNormalizer["a" /* default */])(
  492. src_mainvue_type_script_lang_js_,
  493. render,
  494. staticRenderFns,
  495. false,
  496. null,
  497. null,
  498. null
  499. )
  500. /* hot reload */
  501. if (false) { var api; }
  502. component.options.__file = "packages/popover/src/main.vue"
  503. /* harmony default export */ var main = (component.exports);
  504. // CONCATENATED MODULE: ./packages/popover/src/directive.js
  505. var getReference = function getReference(el, binding, vnode) {
  506. var _ref = binding.expression ? binding.value : binding.arg;
  507. var popper = vnode.context.$refs[_ref];
  508. if (popper) {
  509. if (Array.isArray(popper)) {
  510. popper[0].$refs.reference = el;
  511. } else {
  512. popper.$refs.reference = el;
  513. }
  514. }
  515. };
  516. /* harmony default export */ var directive = ({
  517. bind: function bind(el, binding, vnode) {
  518. getReference(el, binding, vnode);
  519. },
  520. inserted: function inserted(el, binding, vnode) {
  521. getReference(el, binding, vnode);
  522. }
  523. });
  524. // EXTERNAL MODULE: external "vue"
  525. var external_vue_ = __webpack_require__(7);
  526. var external_vue_default = /*#__PURE__*/__webpack_require__.n(external_vue_);
  527. // CONCATENATED MODULE: ./packages/popover/index.js
  528. external_vue_default.a.directive('popover', directive);
  529. /* istanbul ignore next */
  530. main.install = function (Vue) {
  531. Vue.directive('popover', directive);
  532. Vue.component(main.name, main);
  533. };
  534. main.directive = directive;
  535. /* harmony default export */ var popover = __webpack_exports__["default"] = (main);
  536. /***/ })
  537. /******/ });