Skip to content

Commit 25048ad

Browse files
authored
Merge pull request #319 from MHMighani/Event-delegation
Event delegation
2 parents 17d18bf + 4c13ae8 commit 25048ad

File tree

1 file changed

+75
-75
lines changed

1 file changed

+75
-75
lines changed
+75-75
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11

2-
# Event delegation
2+
# پترن Event delegation
33

4-
Capturing and bubbling allow us to implement one of the most powerful event handling patterns called *event delegation*.
4+
گرفتن (capture) و bubbling ایونت ها به ما این توانایی را میدهد که از یکی از قویترین الگوهای ایونت هندلینگ یعنی *event delegation* استفاده کنیم.
55

6-
The idea is that if we have a lot of elements handled in a similar way, then instead of assigning a handler to each of them -- we put a single handler on their common ancestor.
6+
ایده این است که اگر تعداد زیادی المنت داریم و میخواهیم به یک شکل آنها رو هندل کنیم به جای اینکه به تک تک آنها هندلر مجزا اختصاص دهیم، یک هندلر را برای المنت والد مشترک آنها اختصاص میدهیم.
77

8-
In the handler we get `event.target` to see where the event actually happened and handle it.
8+
در هندلری که اختصاص میدهیم با استفاده از `event.target` محل وقوع رویداد را متوجه میشویم و بنابراین میتوانیم آنرا هندل کنیم.
99

10-
Let's see an example -- the [Ba-Gua diagram](http://en.wikipedia.org/wiki/Ba_gua) reflecting the ancient Chinese philosophy.
10+
بیاید تا با هم یک مثال رو بررسی کنیم -- [دیاگرام Ba-Gua] (http://en.wikipedia.org/wiki/Ba_gua) که یک فلسفه چینی باستانی رو نشون میده
1111

12-
Here it is:
12+
به این شکل :
1313

1414
[iframe height=350 src="bagua" edit link]
1515

16-
The HTML is like this:
16+
فایل HTML به اینصورت خواهد بود:
1717

1818
```html
1919
<table>
@@ -30,45 +30,45 @@ The HTML is like this:
3030
</table>
3131
```
3232

33-
The table has 9 cells, but there could be 99 or 9999, doesn't matter.
33+
جدول 9 سلول دارد اما این عدد امکان دارد 99 یا 9999 باشد. مهم نیست.
3434

35-
**Our task is to highlight a cell `<td>` on click.**
35+
**ماموریت ما این است که سلول `<td>` که روی آن کلیک شد را هایلایت کنیم**
3636

37-
Instead of assign an `onclick` handler to each `<td>` (can be many) -- we'll setup the "catch-all" handler on `<table>` element.
37+
به جای آنکه هندلر `onclick` را به هریک از تگ های `<td>` اساین کنیم (که ممکن است تعداد زیادی از آنها داشته باشیم)، هندلر "catch-all" را برروی المنت `<table>` اساین میکنیم.
3838

39-
It will use `event.target` to get the clicked element and highlight it.
39+
این عمل از `event.target` برای پیدا کردن المنت کلیک شده و هایلایت آن استفاده می‌کند.
4040

41-
The code:
41+
کد:
4242

4343
```js
4444
let selectedTd;
4545

4646
*!*
4747
table.onclick = function(event) {
48-
let target = event.target; // where was the click?
48+
let target = event.target; // کلیک کجا اتفاق افتاد؟
4949

50-
if (target.tagName != 'TD') return; // not on TD? Then we're not interested
50+
if (target.tagName != 'TD') return; // المنت TD نیست؟ پس المنت موردنظر ما نیست
5151

52-
highlight(target); // highlight it
52+
highlight(target); // هایلایتش کن
5353
};
5454
*/!*
5555

5656
function highlight(td) {
57-
if (selectedTd) { // remove the existing highlight if any
57+
if (selectedTd) { // اگر هایلایتی وجود دارد آنرا حذف کن
5858
selectedTd.classList.remove('highlight');
5959
}
6060
selectedTd = td;
61-
selectedTd.classList.add('highlight'); // highlight the new td
61+
selectedTd.classList.add('highlight'); // TD جدید را هایلایت کن
6262
}
6363
```
6464

65-
Such a code doesn't care how many cells there are in the table. We can add/remove `<td>` dynamically at any time and the highlighting will still work.
65+
این کد به اینکه چند سلول داخل جدول قرار دارد اهمیتی نمیدهد. میتوانیم المنت‌های `<td>` رو به شکل دینامیکی هر زمان که خواستیم اضافه/کم کنیم و همچنان هایلایت کار خواهد کرد.
6666

67-
Still, there's a drawback.
67+
اما همچنان یک اشکال وجود دارد.
6868

69-
The click may occur not on the `<td>`, but inside it.
69+
کلیک ممکن است نه روی `<td>` بلکه درون آن اتفاق بیفتد.
7070

71-
In our case if we take a look inside the HTML, we can see nested tags inside `<td>`, like `<strong>`:
71+
در اینصورت اگر به داخل HTML نگاهی بندازیم میتوانیم تگ های درون `<td>` را ببینمی. مثل المنت `<strong>`
7272

7373
```html
7474
<td>
@@ -79,13 +79,13 @@ In our case if we take a look inside the HTML, we can see nested tags inside `<t
7979
</td>
8080
```
8181

82-
Naturally, if a click happens on that `<strong>` then it becomes the value of `event.target`.
82+
طبیعتا زمانی که یک کلیک بر روی `<strong>` انجام میشود آنگاه مقدار `event.target` برابر آن خواهد شد.
8383

8484
![](bagua-bubble.svg)
8585

86-
In the handler `table.onclick` we should take such `event.target` and find out whether the click was inside `<td>` or not.
86+
در هندلر `table.onclick` ما باید مقدار `event.target` را گرفته و از این طریق مشخص کنیم که آیا کلیک درون `<td>` اتفاق افتاده یا نه.
8787

88-
Here's the improved code:
88+
کد بهبود یافته شده:
8989

9090
```js
9191
table.onclick = function(event) {
@@ -99,27 +99,27 @@ table.onclick = function(event) {
9999
};
100100
```
101101

102-
Explanations:
103-
1. The method `elem.closest(selector)` returns the nearest ancestor that matches the selector. In our case we look for `<td>` on the way up from the source element.
104-
2. If `event.target` is not inside any `<td>`, then the call returns immediately, as there's nothing to do.
105-
3. In case of nested tables, `event.target` may be a `<td>`, but lying outside of the current table. So we check if that's actually *our table's* `<td>`.
106-
4. And, if it's so, then highlight it.
102+
توضیحات:
103+
1. متد `elem.closest(selector)` نزدیک‌ترین المنت به سلکتور را برمیگرداند. در این مسئله ما در مسیر از سورس المنت به بالا به دنبال المنت `<td>` هستیم.
104+
2. اگر `event.target` درون هیچ `<td>` نباشد آنگاه فراخوانی تابع بلافاصله برمیگردد. درست مانند آنکه چیزی برای انجام دادن وجود ندارد.
105+
3. در مسئله جدول‌های تودرتو `event.target` ممکن است یک المنت `<td>` باشد که خارج از جدول مورد نظر ما قرار گرفته است بنابراین نیاز است بررسی کنیم که المنت آیا درون جدول موردنظر ما قرار دارد یا نه.
106+
4. و اگر چنین است آنگاه هایلایتش کن.
107107

108-
As the result, we have a fast, efficient highlighting code, that doesn't care about the total number of `<td>` in the table.
108+
در نتیحه ما یک کد هایلایتر سریع و کارا داریم که عملکرد آن به تعداد سلول‌های `<td>` در جدول ارتباطی ندارد.
109109

110-
## Delegation example: actions in markup
110+
## مثالی از الگوی delegation: اکشن‌های مارک‌آپ
111111

112-
There are other uses for event delegation.
112+
استفاده‌های دیگری هم برای event delegation وجود دارد
113113

114-
Let's say, we want to make a menu with buttons "Save", "Load", "Search" and so on. And there's an object with methods `save`, `load`, `search`... How to match them?
114+
در نظر بگیرید که میخواهیم یک منو با دکمه‌های "Save", "Load"، "Search" و مانند آن بسازیم آبجکتی با متدهای `save`, `load`, `search` و ... وجود دارد. چطور میتوانیم این متدهارا به دکمه‌های مربوطه وصل کنیم؟
115115

116-
The first idea may be to assign a separate handler to each button. But there's a more elegant solution. We can add a handler for the whole menu and `data-action` attributes for buttons that has the method to call:
116+
اولین ایده‌ای که به ذهن میرسد ممکن است این باشد که برای هریک از دکمه‌ها هندلر مجزا اساین کنیم. اما راه‌حل بهتری هم وجود دارد. می‌توانیم یک هندلر به کل منو و اتریبیوت‌های `data-action` دکمه‌ها اضافه کنیم.
117117

118118
```html
119119
<button *!*data-action="save"*/!*>Click to Save</button>
120120
```
121121

122-
The handler reads the attribute and executes the method. Take a look at the working example:
122+
هندلر اتریبیوت را خوانده و متد را اجرا میکند. نگاهی به این مثال واقعی بیندازید:
123123

124124
```html autorun height=60 run untrusted
125125
<div id="menu">
@@ -161,28 +161,28 @@ The handler reads the attribute and executes the method. Take a look at the work
161161
</script>
162162
```
163163

164-
Please note that `this.onClick` is bound to `this` in `(*)`. That's important, because otherwise `this` inside it would reference the DOM element (`elem`), not the `Menu` object, and `this[action]` would not be what we need.
164+
توجه کنید که در `(*)` متد `this.onClick` به `this` متصل شده است. این مهم است زیرا در غیراینصورت `this` درون آن به المنت DOM رفرنس میدهد (`elem`) نه به آبجکت `Menu` و `this[action]` چیزی که ما میخواهیم نخواهد بود.
165165

166-
So, what advantages does delegation give us here?
166+
خب، استفاده از الگوی delegation اینجا برای ما چه فایده‌ای دارد؟
167167

168-
```compare
169-
+ We don't need to write the code to assign a handler to each button. Just make a method and put it in the markup.
170-
+ The HTML structure is flexible, we can add/remove buttons at any time.
168+
```مقایسه
169+
+ نیازی به نوشتن کد برای اختصاص دادن یک هندلر به هریک از دکمه‌ها نداریم. فقط یک متد مینویسیم و در مارک‌آپ قرار می‌دهیم.
170+
+ ساختار HTML منعطف خواهد بود، می‌توانیم دکمه‌ها را هر زمان که خواستیم اضافه/کم کنیم.
171171
```
172172

173-
We could also use classes `.action-save`, `.action-load`, but an attribute `data-action` is better semantically. And we can use it in CSS rules too.
173+
همچنین میتوانیم از کلاس‌های `action-save`، `action-load` استفاده کنیم. اما از لحاط سمنتیک اتریبیوت `data-action` بهتر است. به علاوه می‌توانیم از آن در CSS rule ها هم استفاده کنیم.
174174

175-
## The "behavior" pattern
175+
## الگوی "behavior"
176176

177-
We can also use event delegation to add "behaviors" to elements *declaratively*, with special attributes and classes.
177+
همچنین ما میتوانیم با استفاده از الگوی delegation با استفاده از اتریبیوت‌ها و کلاس‌های خاص رفتارهایی را به صورت *declaratively* به المنت‌ها اضافه کنیم.
178178

179-
The pattern has two parts:
180-
1. We add a custom attribute to an element that describes its behavior.
181-
2. A document-wide handler tracks events, and if an event happens on an attributed element -- performs the action.
179+
الگو دو قسمت دارم:
180+
1. یک اتریبیوت شخصی‌سازی شده که بیانگر رفتار آن باشد را به المنت اضافه میکنیم.
181+
2. یک هندلر به وسعت داکیومنت ایونت‌ها را ردیابی میکند و اگر یک رویداد بر روی المنتی بااتریبوت موردنظر اتفاق آنگاه عمل خواهد کرد.
182182

183-
### Behavior: Counter
183+
### رفتار شمارشگر
184184

185-
For instance, here the attribute `data-counter` adds a behavior: "increase value on click" to buttons:
185+
برای مثال اینجا اتریبیوت `data-counter` رفتار "مقدار را با کلیک افزایش بده" را به دکمه‌ها اضافه میکند.
186186

187187
```html run autorun height=60
188188
Counter: <input type="button" value="1" data-counter>
@@ -191,27 +191,27 @@ One more counter: <input type="button" value="2" data-counter>
191191
<script>
192192
document.addEventListener('click', function(event) {
193193
194-
if (event.target.dataset.counter != undefined) { // if the attribute exists...
194+
if (event.target.dataset.counter != undefined) { // در صورتی که اتریبیوت وجود داشته باشد..
195195
event.target.value++;
196196
}
197197
198198
});
199199
</script>
200200
```
201201

202-
If we click a button -- its value is increased. Not buttons, but the general approach is important here.
202+
اگر بر روی یک دکمه کلیک کنیم مقدار آن افزایش می‌یابد. اینجا روش کلی مهم است نه دکمه ها.
203203

204-
There can be as many attributes with `data-counter` as we want. We can add new ones to HTML at any moment. Using the event delegation we "extended" HTML, added an attribute that describes a new behavior.
204+
ممکن است هر تعداد اتریبیوت با مقدار `data-counter` که بخواهیم داشته باشیم. هر زمان که بخواهیم میتوانیم یکی دیگه اضافه کنیم. با استفاده از الگوی event delegation با افزودن یک اتریبیوت که بیانگر رفتاری جدید است HTML را گسترش داده‌ایم.
205205

206206
```warn header="For document-level handlers -- always `addEventListener`"
207-
When we assign an event handler to the `document` object, we should always use `addEventListener`, not `document.on<event>`, because the latter will cause conflicts: new handlers overwrite old ones.
207+
زمانی که یک ایونت هندلر را به آبجکت `document` اختصاص میدهیم، همواره باید از `addEventListener` استفاده کنیم، نه `document.on<event>` چون دومی موجب کانفلیکت خواهد شد: هندلرهای جدید جایگزین قدیمی‌ها خواهند شد.
208208

209-
For real projects it's normal that there are many handlers on `document` set by different parts of the code.
209+
برای پروژه‌های واقعی طبیعتا ممکن است هندلرهای زیادی روی `document` در قسمت‌های مختلف کد تعریف شده باشد.
210210
```
211211
212-
### Behavior: Toggler
212+
### رفتار: تغییر وضعیت
213213
214-
One more example of behavior. A click on an element with the attribute `data-toggle-id` will show/hide the element with the given `id`:
214+
یک مثال دیگر از این رفتار. یک کلیک بر روی المنتی با اتریبیوت `data-toggle-id` المنتی با `id` داده شده را نمایش/پنهان می‌کند.
215215
216216
```html autorun run height=60
217217
<button *!*data-toggle-id="subscribe-mail"*/!*>
@@ -236,37 +236,37 @@ One more example of behavior. A click on an element with the attribute `data-tog
236236
</script>
237237
```
238238

239-
Let's note once again what we did. Now, to add toggling functionality to an element -- there's no need to know JavaScript, just use the attribute `data-toggle-id`.
239+
بیاید تا یک بار دیگه به کاری که انجام دادیم توجه کنیم. حالا برای افزودن کارکرد تغییر وضعیت به یک المنت نیازی به دانستن جاوااسکریپت نداریم، تنها با استفاده از اتریبیوت `data-toggle-id` میتوان اینکار را انجام داد.
240240

241-
That may become really convenient -- no need to write JavaScript for every such element. Just use the behavior. The document-level handler makes it work for any element of the page.
241+
این ممکن است خیلی کار مارا راحت کند. نیازی به نوشتن جاوااسکریپت برای هر المنت نیست. تنها با استفاده از رفتار. هندلری که به وسعت داکیومنت تعریف کردیم باعث میشود راه حل ما برای همه‌ی المنت‌های داخل صفحه کار کند.
242242

243-
We can combine multiple behaviors on a single element as well.
243+
همچنین میتوانیم چندین رفتار را برای یک المنت ترکیب کنیم.
244244

245-
The "behavior" pattern can be an alternative to mini-fragments of JavaScript.
245+
الگوی "رفتار" میتواند یک جایگزین برای mini fragment های جاوااسکریپت باشد.
246246

247-
## Summary
247+
## خلاصه
248248

249-
Event delegation is really cool! It's one of the most helpful patterns for DOM events.
249+
الگوی Event delegation واقعا باحال است! این الگو یکی از مفیدترین الگوها برای ایونت‌های DOM است.
250250

251-
It's often used to add the same handling for many similar elements, but not only for that.
251+
این الگو معمولا برای کنترل تعداد زیادی از المان‌های مشابه استفاده می‌شود اما این تنها کاربرد آن نیست.
252252

253-
The algorithm:
253+
الگوریت:
254254

255-
1. Put a single handler on the container.
256-
2. In the handler -- check the source element `event.target`.
257-
3. If the event happened inside an element that interests us, then handle the event.
255+
1. یک هندلر برای کل کانتینر قرار دهید.
256+
2. در هندلر المنت سورس را از طریق `event.target` بیابید.
257+
4. اگر ایونت درون المنتی که موردنظر ماست اتفاق افتاده است آنگاه ایونت را هندل کنید.
258258

259-
Benefits:
259+
فواید:
260260

261-
```compare
262-
+ Simplifies initialization and saves memory: no need to add many handlers.
263-
+ Less code: when adding or removing elements, no need to add/remove handlers.
264-
+ DOM modifications: we can mass add/remove elements with `innerHTML` and the like.
261+
```مقایسه
262+
+ عدم نیاز به اضافه کردن تعداد زیادی هندلر باعث ذخیره حافظه و ساده‌سازی شروع میشود
263+
+ کد کمتر: زمان اضافه و کم کردن المان‌ها نیازی به تغییر در هندلرها نیست.
264+
+ تغییرات DOM: میتواینم با استفاده از `innerHTML` و ابزارهای مشابه آن تعداد زیادی المان را کم/زیاد کنیم.
265265
```
266266

267-
The delegation has its limitations of course:
267+
بدون شک این الگو هم محدودیت‌های خودش را دارد:
268268

269-
```compare
270-
- First, the event must be bubbling. Some events do not bubble. Also, low-level handlers should not use `event.stopPropagation()`.
271-
- Second, the delegation may add CPU load, because the container-level handler reacts on events in any place of the container, no matter whether they interest us or not. But usually the load is negligible, so we don't take it into account.
269+
```مقایسه
270+
- نخست ایونت باید bubble کند. بعضی از ایونت‌ها bubble نمی‌کنند. همچنین هندلرهای سطح پایین نباید از `event.stopPropagation()` استفاده کنند.
271+
- دوم اینکه ممکن است به بار CPU اضافه کند چون هندلری که در سطح کانتینر تعریف شده است، درهرکجای کانتینر، بدون توجه به اینکه آیا مدنظر ما هستند یا نه به رویدادها واکنش نشان خواهد داد. اما این بار CPU معمولا قابل چشم‌پوشی است بنابراین ما آنرا به حساب نمی‌آوریم.
272272
```

0 commit comments

Comments
 (0)