From c307cc4624f2d84dd83afa8089505a0be0c7d63a Mon Sep 17 00:00:00 2001 From: Tusooa Zhu <tusooa@kazv.moe> Date: Wed, 6 Apr 2022 14:54:58 -0400 Subject: [PATCH] Use vue3 teleport instead of portal --- src/components/account_actions/account_actions.vue | 4 ++-- src/components/desktop_nav/desktop_nav.vue | 4 ++-- src/components/extra_buttons/extra_buttons.vue | 4 ++-- src/components/follow_button/follow_button.vue | 4 ++-- src/components/mobile_nav/mobile_nav.vue | 4 ++-- src/components/retweet_button/retweet_button.vue | 4 ++-- src/components/user_card/user_card.vue | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/src/components/account_actions/account_actions.vue b/src/components/account_actions/account_actions.vue index 4bab363b..96a190d1 100644 --- a/src/components/account_actions/account_actions.vue +++ b/src/components/account_actions/account_actions.vue @@ -66,7 +66,7 @@ </button> </template> </Popover> - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmBlock" :title="$t('user_card.block_confirm_title')" @@ -85,7 +85,7 @@ /> </i18n> </confirm-modal> - </portal> + </teleport> </div> </template> diff --git a/src/components/desktop_nav/desktop_nav.vue b/src/components/desktop_nav/desktop_nav.vue index af12a98d..c109d384 100644 --- a/src/components/desktop_nav/desktop_nav.vue +++ b/src/components/desktop_nav/desktop_nav.vue @@ -75,7 +75,7 @@ </button> </div> </div> - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmLogout" :title="$t('login.logout_confirm_title')" @@ -86,7 +86,7 @@ > {{ $t('login.logout_confirm') }} </confirm-modal> - </portal> + </teleport> </nav> </template> <script src="./desktop_nav.js"></script> diff --git a/src/components/extra_buttons/extra_buttons.vue b/src/components/extra_buttons/extra_buttons.vue index 715e93ac..2b574bbd 100644 --- a/src/components/extra_buttons/extra_buttons.vue +++ b/src/components/extra_buttons/extra_buttons.vue @@ -125,7 +125,7 @@ icon="ellipsis-h" /> </button> - <portal to="modal"> + <teleport to="#modal"> <ConfirmModal v-if="showingDeleteDialog" :title="$t('status.delete_confirm_title')" @@ -136,7 +136,7 @@ > {{ $t('status.delete_confirm') }} </ConfirmModal> - </portal> + </teleport> </template> </Popover> </template> diff --git a/src/components/follow_button/follow_button.vue b/src/components/follow_button/follow_button.vue index 5c799406..b4567348 100644 --- a/src/components/follow_button/follow_button.vue +++ b/src/components/follow_button/follow_button.vue @@ -7,7 +7,7 @@ @click="onClick" > {{ label }} - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmUnfollow" :title="$t('user_card.unfollow_confirm_title')" @@ -26,7 +26,7 @@ /> </i18n> </confirm-modal> - </portal> + </teleport> </button> </template> diff --git a/src/components/mobile_nav/mobile_nav.vue b/src/components/mobile_nav/mobile_nav.vue index 9d9c6e47..ec12912c 100644 --- a/src/components/mobile_nav/mobile_nav.vue +++ b/src/components/mobile_nav/mobile_nav.vue @@ -81,7 +81,7 @@ ref="sideDrawer" :logout="logout" /> - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmLogout" :title="$t('login.logout_confirm_title')" @@ -92,7 +92,7 @@ > {{ $t('login.logout_confirm') }} </confirm-modal> - </portal> + </teleport> </div> </template> diff --git a/src/components/retweet_button/retweet_button.vue b/src/components/retweet_button/retweet_button.vue index 977116b3..c98565dd 100644 --- a/src/components/retweet_button/retweet_button.vue +++ b/src/components/retweet_button/retweet_button.vue @@ -33,7 +33,7 @@ > {{ status.repeat_num }} </span> - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmDialog" :title="$t('status.repeat_confirm_title')" @@ -44,7 +44,7 @@ > {{ $t('status.repeat_confirm') }} </confirm-modal> - </portal> + </teleport> </div> </template> diff --git a/src/components/user_card/user_card.vue b/src/components/user_card/user_card.vue index fd51b09f..956a553c 100644 --- a/src/components/user_card/user_card.vue +++ b/src/components/user_card/user_card.vue @@ -279,7 +279,7 @@ :handle-links="true" /> </div> - <portal to="modal"> + <teleport to="#modal"> <confirm-modal v-if="showingConfirmMute" :title="$t('user_card.mute_confirm_title')" @@ -298,7 +298,7 @@ /> </i18n> </confirm-modal> - </portal> + </teleport> </div> </template>