Home window.open으로 팝업 띄우기(Vue2)
Post
Cancel

window.open으로 팝업 띄우기(Vue2)

본래 Vue.js에서 window.open을 사용하는 건 SPA의 사상에 위배될 수도 있지만, 고객의 요청으로 부득이하게 새 창으로 화면을 구현해야 할 때가 있다. stackoverflow에서 찾은 방법인데 일단 빈 화면을 띄우고, 보여줘야 할 내용을 빈 팝업에다 복사하는 방법이다. 문제는 크롬에서는 잘 동작을 하는데, IE 11에서는 에러가 난다. 만약 크롬에서만 보여줘도 문제가 없다면 해볼 만한 방법이다.

Parent.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<template>
  <div>
    <popup v-model="open">팝업창의 내용입니다.</popup>
    <button @click="open = true">open</button>
  </div>
</template>
<script>
import Popup from "./Popup.vue";

export default {
  components: { Popup },

  data() {
    return {
      open: false,
    };
  },
};
</script>

Popup.vue

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<template>
  <div v-if="open">
    <slot />
  </div>
</template>

<script>
function copyStyles(sourceDoc, targetDoc) {
  Array.from(sourceDoc.styleSheets).forEach((styleSheet) => {
    if (styleSheet.cssRules) {
      const newStyleEl = sourceDoc.createElement("style");

      Array.from(styleSheet.cssRules).forEach((cssRule) => {
        newStyleEl.appendChild(sourceDoc.createTextNode(cssRule.cssText));
      });

      targetDoc.head.appendChild(newStyleEl);
    } else if (styleSheet.href) {
      const newLinkEl = sourceDoc.createElement("link");

      newLinkEl.rel = "stylesheet";
      newLinkEl.href = styleSheet.href;
      targetDoc.head.appendChild(newLinkEl);
    }
  });
}

export default {
  model: {
    prop: "open",
    event: "close",
  },
  props: {
    open: {
      type: Boolean,
      default: false,
    },
  },
  data() {
    return {
      windowRef: null,
    };
  },
  watch: {
    open(newOpen) {
      if (newOpen) {
        this.openPopup();
      } else {
        this.closePopup();
      }
    },
  },
  methods: {
    openPopup() {
      this.windowRef = window.open(
        "",
        "",
        "width=600,height=400,left=200,top=200"
      );
      this.windowRef.document.body.appendChild(this.$el);
      copyStyles(window.document, this.windowRef.document);
      this.windowRef.addEventListener("beforeunload", this.closePopup);
    },
    closePopup() {
      if (this.windowRef) {
        this.windowRef.close();
        this.windowRef.removeEventListener("beforeunload", this.closePopup);
        this.windowRef = null;
        this.$emit("close", false); // 부모창의 binding된 open에게 값을 넘김
      }
    },
  },
  mounted() {
    if (this.open) {
      this.openPopup();
    }
  },
  beforeDestroy() {
    if (this.windowRef) {
      this.closePopup();
    }
  },
};
</script>

출처: https://stackoverflow.com/questions/49657462/open-a-vuejs-component-on-a-new-window

This post is licensed under CC BY 4.0 by the author.