作者 デュベム・イズオラ
複数のページにわたって同じ Web レイアウトを調整するのに何時間も費やしたことや、UI を中断することなく変化するデータに適応させるのに苦労したことはありますか?これらの一般的な問題により、開発プロセスが遅くなり、イライラしてエラーが発生しやすいコードが生成される可能性があります。
実行時にデータに基づいてレイアウトを作成することで、変更に簡単に適応できる、柔軟で保守性が高く、スケーラブルなアプリケーションを構築できます。 動的レイアウト と呼ばれるこのアプローチにより、HTML を繰り返し編集する必要がなくなり、UI がデータとシームレスに同期した状態を維持できるようになります。
この記事では、動的レイアウトが開発ワークフローをどのように変革し、プロジェクトを向上させることができるかを探っていきます。
動的レイアウトは、コンテンツが頻繁に変更される場合、または API や他のデータ ソースから取得する、またはユーザー インタラクションに応答する応答性の高い UI を表示する場合に特に有益です。
動的レイアウトは、次のような現実世界のさまざまなシナリオで威力を発揮します。
これらの要素を動的に生成することで、一貫性を確保し、調整を簡素化し、クリーンなコードベースを維持します。
動的ナビゲーションバーを構築して、動的レイアウトを実際に体験してみましょう。参考までに、このチュートリアルの Github リポジトリは次のとおりです。
支払いプラットフォームを開発していて、以下のスクリーンショットに示すように、クリーンで拡張可能なナビゲーションバー コンポーネントを作成する必要があると想像してください。
ユーザーがログインしているときのナビゲーションバー
ユーザーがログインしていない状態のナビゲーションバー
動的レイアウトに焦点を当てるため、ここでは環境設定の詳細については掘り下げません。完全なコード サンプルは GitHub リポジトリにあります。
使用されるテクノロジー:
静的 Navbar コンポーネントには多数の HTML タグとプロパティが含まれるため、コードの読み取りと保守が難しくなります。
このようなレイアウトの更新は、特に同じプロパティやスタイルを共有する繰り返し要素の場合、エラーが発生しやすくなります。
レイアウトの製図には静的なアプローチが便利ですが、保守性とコラボレーションの観点からは動的レイアウトの方が望ましいです。
静的ナビゲーションバーの例:
? App.vue
<template> <nav class="w-screen border-b py-4"> <div class="container mx-auto flex items-center gap-10"> <!-- Logo --> <NuxtLink href="/" class="flex items-center"> <img src="https://logo.clearbit.com/google.com" class="w-10 h-10 object-contain" /> </NuxtLink> <!-- Dashboard or Home Link --> <NuxtLink v-if="user" href="/dashboard" class="flex items-center"> <PhGauge size="24" /> <span class="ml-2">Dashboard</span> </NuxtLink> <NuxtLink v-else href="/home" class="flex items-center"> <PhHouseSimple size="24" /> <span class="ml-2">Home</span> </NuxtLink> <!-- Spacer --> <div class="ml-auto"></div> <!-- Add Funds Button (Visible only when user is authenticated) --> <button v-if="user" class="flex items-center"> <span class="text-white bg-green-500 px-4 py-2 rounded-lg">Add Funds</span> </button> <!-- User Avatar (Visible only when user is authenticated) --> <div v-if="user" class="flex items-center"> <Avatar src="https://randomuser.me/api/portraits/men/40.jpg" /> <span class="ml-2">Dubem Izuorah</span> </div> <!-- Auth Button --> <button class="flex items-center" @click="user = !user"> <span>{{ user ? 'Logout' : 'Login' }}</span> </button> </div> </nav> <main class="h-64 bg-gray-100 flex justify-center pt-10 text-xl">App Here</main> </template> <script setup lang="jsx"> import { ref } from "vue"; import { NuxtLink, Avatar } from "#components"; import { PhGauge, PhHouseSimple } from "@phosphor-icons/vue"; // Simulate user authentication status const user = ref(true); </script>
単純なインターフェースには静的レイアウトで十分ですが、動的レイアウトは優れた保守性と拡張性を提供します。
To create a dynamic navbar, we’ll want to define our layout data and generate UI components based on this data.
Instead of hard-coding each menu item, we can create a list of menu items in our script with properties like title, image, to, icon, render, and class. This allows us to dynamically generate the navbar based on the data.
? App.vue
<script setup lang="jsx"> // Import necessary components import { ref, computed } from "vue"; import { NuxtLink, Avatar } from "#components"; import { PhGauge, PhHouseSimple } from "@phosphor-icons/vue"; // Simulate user authentication status const user = ref(true); // Define menu items const items = computed(() => [ { key: "logo", image: "https://logo.clearbit.com/google.com", href: "/" }, { icon: user.value ? PhGauge : PhHouseSimple, key: "dashboard", title: user.value ? "Dashboard" : "Home", to: user.value ? "/dashboard" : "/home", }, { key: "spacer", class: "ml-auto", }, { key: "add-funds", render: () => <span class="text-white bg-green-500 px-4 py-2 rounded-lg">Add Funds</span> }, { key: "user", render: () => <Avatar src="https://randomuser.me/api/portraits/men/40.jpg" />, title: "Dubem Izuorah", hide: !user.value }, { key: "auth", title: user.value ? "Logout" : "Login", onClick: () => user.value = !user.value }, ]); // Filter out hidden items const menuItems = computed(() => items.value.filter(item => !item.hide)); </script>
Key Takeaways:
Create an Avatar component used within the dynamic navbar.
? Avatar.vue
<template> <div class="rounded-full w-10 h-10 bg-gray-100 overflow-hidden"> <img class="w-full h-full object-cover" :src="src" /> </div> </template> <script setup> const props = defineProps({ src: { type: String, required: true, }, }) </script>
This component creates a reusable avatar element that can display different images based on the ‘src’ prop passed to it. This makes it flexible and easy to use throughout your application for displaying user avatars or profile pictures.
Use the defined data to render the navbar dynamically.
? App.vue
<template> <nav class="w-screen border-b py-4"> <div class="container mx-auto flex items-center gap-10"> <component v-for="item in menuItems" :key="item.key" :is="item.to ? NuxtLink : 'button'" v-bind="item" @click="item.onClick" class="flex items-center" > <img v-if="item.image" :src="item.image" class="w-10 h-10 object-contain" /> <component v-if="item.render" :is="item.render" /> <component v-if="item.icon" :is="item.icon" :size="24" /> <span v-if="item.title" class="ml-2">{{ item.title }}</span> </component> </div> </nav> <main class="h-64 bg-gray-100 flex justify-center pt-10 text-xl">App Here</main> </template> <script setup lang="jsx"> // The script remains the same as above </script>
Key Takeaways:
By following this approach, you create a dynamic and flexible horizontal navbar that’s easy to extend or modify. This method not only saves time and effort but also ensures your codebase remains clean and maintainable.
Vue JSX allows developers to write Vue components using a syntax similar to React’s JSX, offering greater flexibility and expressiveness. Unlike Vue’s typical template-based approach, JSX allows you to embed HTML-like elements directly inside JavaScript logic. This is particularly useful in dynamic layouts where you need to generate or manipulate UI elements based on dynamic data.
Instead of separating logic and markup across different sections of the component (template and script), JSX enables you to manage both in one cohesive block of code.
In our solution, JSX helps simplify how we dynamically render components like the Avatar or conditional elements such as the “Add Funds” button.
For example, instead of hardcoding these elements into a template, we can dynamically generate them using a render function in JavaScript.
This allows us to update components like the navbar with real-time data, such as user authentication status, without duplicating code or scattering logic across the template and script sections.
By using JSX, we maintain cleaner, more maintainable code, while still leveraging Vue’s reactivity and flexibility.
Now that we understand dynamic layouts, it’s time to put your knowledge into practice. Here are some suggested next steps:
Mit diesen Schritten sind Sie auf dem besten Weg, sich mit dynamischen Layouts vertraut zu machen. Für ein noch reibungsloseres Erlebnis beim Erstellen dynamischer Schnittstellen schauen Sie sich unseren Kurs über einfache Schnittstellen mit Vuetify an, der beliebten Komponentenbibliothek für Vue.js-Entwickler.
Durch die Einführung dynamischer Layouts können Sie Ihren Entwicklungsprozess optimieren, die Flexibilität Ihrer Anwendung erhöhen und eine sauberere, besser wartbare Codebasis beibehalten. Beginnen Sie noch heute mit der Integration dynamischer Layouts in Ihre Projekte und erleben Sie die transformative Wirkung auf Ihren Workflow und Ihre Anwendungsqualität.
Ursprünglich veröffentlicht unter https://www.vuemastery.com am 5. September 2024.
以上がVue jsx を使用した動的レイアウト: 柔軟で保守可能な UI のガイドの詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。