fix. [PWT-107] [front] Footer > 언어 선택 박스 노출 순서 지정

This commit is contained in:
“hyeonggkim”
2025-12-02 20:28:24 +09:00
parent 8684c6e501
commit fdb478304c
2 changed files with 67 additions and 5 deletions

View File

@@ -159,10 +159,13 @@
<div
class="language-area static md:absolute bottom-7 right-10 text-white mt-5 md:mt-0 md:bottom-5.5 md:right-4"
>
<BlocksLanguageSwitcher />
<BlocksLanguageSwitcher :language-order="tm('Footer_Language_Order')" />
</div>
<div class="mt-6 md:mt-6 hidden sm:block">
<div
v-if="hasCautionText"
class="mt-6 md:mt-6 hidden sm:block"
>
<div
v-dompurify-html="tm('Footer_caution')"
class="text-xs text-white/30"
@@ -231,6 +234,29 @@ import type {
const { tm, locale }: any = useI18n()
// Footer_caution 값이 있고 빈 객체가 아닌지 체크
const hasCautionText = computed(() => {
const value = tm('Footer_caution')
// null, undefined 체크
if (value === null || value === undefined) {
return false
}
// 빈 객체 체크
if (typeof value === 'object' && !Array.isArray(value) && Object.keys(value).length === 0) {
return false
}
// 문자열로 변환하여 빈 문자열 또는 '{}' 문자열 체크
const stringValue = String(value).trim()
if (stringValue === '' || stringValue === '{}') {
return false
}
return true
})
const gameDataStore = useGameDataStore()
const { gameData } = storeToRefs(gameDataStore)
// const path = ref<string>(`${staticUrl}/local/template/${gameData.value.s3_folder_name}`)
@@ -317,6 +343,7 @@ const footerAgeRatingInfo = computed((): string[] => {
const info = (tm as any)('Footer_AgeRating_Info')
return Array.isArray(info) ? info : []
})
</script>
<style scoped>