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.
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.
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.
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:js;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:js;toolbar:false;"><template>
<Button>
<img
v-if="loading"
src="spinner.svg"
/>
Click Me
</Button>
</template></pre><div class="contentsignin">Copy after login</div></div>
, 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. Extension 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:js;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:
to add Our content
is still mainly based on buttons of different styles. The slots of
and footer
have been updated. Mostly for customizing
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!