


Detailed explanation of 6 different levels of component reusability concepts
This article will give you a detailed introduction to the concept of component reusability at six different levels. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.
#We all want to write less code while also doing more. To achieve this, we build components so that they can be reused multiple times.
Some components only require basic reusability, while others require more complex refactoring techniques before we can fully reuse it.
There are 6
different levels of reusability concepts. Let’s experience them first, and we will talk about them one by one in subsequent updates.
1. Templating
With templating, we wrap some highly repetitive code in its own component instead of copying and pasting it all around code.
When we reuse the component (instead of using the code directly), it gives us two benefits:
It will be much easier to make changes in the future , since we only need to change it in one place
We don’t have to remember where each duplicate code was copied
This is the most The basic and most commonly talked about form of reusability.
2. Configurable
For some components, we need to modify their working methods according to needs, such as:
The Button
component has a main version by default and a version with an icon. But instead of creating a completely new component for each version, we specify props
to switch between different types.
Adding theseprops
usually does not add a lot of complexity to the component, and at the same time, it gives us more flexibility in using the component.
Note: This is different from using prop
to save state or data, such as a loading
prop or a disabled
prop.
3. Adaptability
The biggest problem with configurability is a lack of foresight. We need to anticipate future needs and build them into the component by placing the corresponding prop
.
However, if your components are adaptable enough, you won't need to change them to handle future needs. In order to make our components sufficiently
adaptable, we can use slots to achieve it. For example, we can use the
instead of the text passed in to the Button
component: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'><!-- Button.vue -->
<template>
<button
class="btn btn--default"
@click="$emit(&#39;click&#39;)"
>
<slot />
</button>
</template></pre><div class="contentsignin">Copy after login</div></div>
Now we are not limited to whether the type passed in is
or number
. If we want to add
without modifying the Button
component, we can do this: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'><template>
<Button>
<img
v-if="loading"
src="spinner.svg"
/>
Click Me
</Button>
</template></pre><div class="contentsignin">Copy after login</div></div>
In addition to passing the full markup block to our child component via the
slot, we can also pass a set of instructions on how to render. It's like we cook from a recipe instead of ordering takeout. When we follow a recipe, it takes more work, but we can make it at our own pace. We can make adjustments at any time, or we can abandon the non-recipe process entirely.
We use
scope slotsto add greater flexibility to our components.
5. ExtensionThrough
Adaptability and Reversibility
, we have some necessary technical foundations, these Skills maximize component reusability. The next step is to apply these techniques to the entire component so that we can more easily extend its behavior.
We use
named slots to add one or more extension points in the component. While Adaptability
and Reversibility
by themselves give us one option for extending behavior, having multiple extension points gives us many different options. Here, we have a
component which contains header
, default
and footer
: <div class="code" style="position:relative; padding:0px; margin:0px;"><pre class='brush:php;toolbar:false;'><template>
<div class="modal">
<slot name="header">
<h2>{{ title }}</h2>
</slot>
<!-- Default slot for main content -->
<slot />
<slot name="footer">
<Button @click="closeModal">
Close
</Button>
</slot>
</div>
</template></pre><div class="contentsignin">Copy after login</div></div>
This is a fairly simple extension example where we already have a few options for extending this component:
- Just override
- default slot
to add Our content
can be overwritten by the slot name. The content of - header
- footer
is still mainly based on buttons of different styles. The slots of
- header
and
footer
have been updated. Mostly for customizing You don't have to extend the behavior of this component, but you can extend parts of it. Either way, we get a lot of flexibility and a lot of code reusability.
The more advanced reusability on
Extension is nesting. We can use multiple basic components as a basis. Nesting layers within layers may sound crazy at first, but it's very useful, especially in medium to large applications. We start with a basic component that has a fairly common functionality. The next component is more specific, extending the base component in several ways. Then continue to expand upwards based on the previous Basic Components until we have the final component that completes the actual work. Animal Dog component Programming Teaching! ! to the more specific
Mammal(Mammal), and then
Dog(Dog), and finally ends in the
Poodle(Poodle) way. If all we need is the
Poodle component, it seems that our
basic component is a waste of time. But is different in large applications. We need to make multiple changes on the same basic concept to meet different personalized needs. At this time, this basic groupThe idea of nested pieces is very important. to get the
Corgi and
Beagle components. Or extend the
Mammal component to get the
Cat component, so you can add
Tiger and
Lion Components.
Summary
The above is an overview of the 6 reusability levels. Of course, it is very likely that some content will be missed, but basically it can provide us with an encapsulated component. The general idea is also a very good way.
Original address: https://news.knowledia.com/US/en/the-6-levels-of-reusability-7ad7fc58842eb67fc320c8e11305e1010a11f251?source=rss Author: Michael ThiessenTranslation address: https://segmentfault.com/a/1190000039699016
For more programming-related knowledge, please visit:
The above is the detailed content of Detailed explanation of 6 different levels of component reusability concepts. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



Using Bootstrap in Vue.js is divided into five steps: Install Bootstrap. Import Bootstrap in main.js. Use the Bootstrap component directly in the template. Optional: Custom style. Optional: Use plug-ins.

You can add a function to the Vue button by binding the button in the HTML template to a method. Define the method and write function logic in the Vue instance.

There are three ways to refer to JS files in Vue.js: directly specify the path using the <script> tag;; dynamic import using the mounted() lifecycle hook; and importing through the Vuex state management library.

The watch option in Vue.js allows developers to listen for changes in specific data. When the data changes, watch triggers a callback function to perform update views or other tasks. Its configuration options include immediate, which specifies whether to execute a callback immediately, and deep, which specifies whether to recursively listen to changes to objects or arrays.

Vue multi-page development is a way to build applications using the Vue.js framework, where the application is divided into separate pages: Code Maintenance: Splitting the application into multiple pages can make the code easier to manage and maintain. Modularity: Each page can be used as a separate module for easy reuse and replacement. Simple routing: Navigation between pages can be managed through simple routing configuration. SEO Optimization: Each page has its own URL, which helps SEO.

Vue.js has four methods to return to the previous page: $router.go(-1)$router.back() uses <router-link to="/" component window.history.back(), and the method selection depends on the scene.

There are three common methods for Vue.js to traverse arrays and objects: the v-for directive is used to traverse each element and render templates; the v-bind directive can be used with v-for to dynamically set attribute values for each element; and the .map method can convert array elements into new arrays.

The methods to implement the jump of a tag in Vue include: using the a tag in the HTML template to specify the href attribute. Use the router-link component of Vue routing. Use this.$router.push() method in JavaScript. Parameters can be passed through the query parameter and routes are configured in the router options for dynamic jumps.
