You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Capturing and bubbling allow us to implement one of the most powerful event handling patterns called *event delegation*.
4
+
گرفتن (capture) و bubbling ایونت ها به ما این توانایی را میدهد که از یکی از قویترین الگوهای ایونت هندلینگ یعنی *event delegation* استفاده کنیم.
5
5
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
+
ایده این است که اگر تعداد زیادی المنت داریم و میخواهیم به یک شکل آنها رو هندل کنیم به جای اینکه به تک تک آنها هندلر مجزا اختصاص دهیم، یک هندلر را برای المنت والد مشترک آنها اختصاص میدهیم.
7
7
8
-
In the handler we get `event.target`to see where the event actually happened and handle it.
8
+
در هندلری که اختصاص میدهیم با استفاده از `event.target`محل وقوع رویداد را متوجه میشویم و بنابراین میتوانیم آنرا هندل کنیم.
9
9
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) که یک فلسفه چینی باستانی رو نشون میده
11
11
12
-
Here it is:
12
+
به این شکل :
13
13
14
14
[iframe height=350 src="bagua" edit link]
15
15
16
-
The HTML is like this:
16
+
فایل HTML به اینصورت خواهد بود:
17
17
18
18
```html
19
19
<table>
@@ -30,45 +30,45 @@ The HTML is like this:
30
30
</table>
31
31
```
32
32
33
-
The table has 9 cells, but there could be 99 or 9999, doesn't matter.
33
+
جدول 9 سلول دارد اما این عدد امکان دارد 99 یا 9999 باشد. مهم نیست.
34
34
35
-
**Our task is to highlight a cell `<td>`on click.**
35
+
**ماموریت ما این است که سلول `<td>`که روی آن کلیک شد را هایلایت کنیم**
36
36
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>`اساین میکنیم.
38
38
39
-
It will use`event.target`to get the clicked element and highlight it.
39
+
این عمل از`event.target`برای پیدا کردن المنت کلیک شده و هایلایت آن استفاده میکند.
40
40
41
-
The code:
41
+
کد:
42
42
43
43
```js
44
44
let selectedTd;
45
45
46
46
*!*
47
47
table.onclick=function(event) {
48
-
let target =event.target; //where was the click?
48
+
let target =event.target; //کلیک کجا اتفاق افتاد؟
49
49
50
-
if (target.tagName!='TD') return; //not on TD? Then we're not interested
50
+
if (target.tagName!='TD') return; //المنت TD نیست؟ پس المنت موردنظر ما نیست
51
51
52
-
highlight(target); //highlight it
52
+
highlight(target); //هایلایتش کن
53
53
};
54
54
*/!*
55
55
56
56
functionhighlight(td) {
57
-
if (selectedTd) { //remove the existing highlight if any
57
+
if (selectedTd) { //اگر هایلایتی وجود دارد آنرا حذف کن
58
58
selectedTd.classList.remove('highlight');
59
59
}
60
60
selectedTd = td;
61
-
selectedTd.classList.add('highlight'); //highlight the new td
61
+
selectedTd.classList.add('highlight'); //TD جدید را هایلایت کن
62
62
}
63
63
```
64
64
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>`رو به شکل دینامیکی هر زمان که خواستیم اضافه/کم کنیم و همچنان هایلایت کار خواهد کرد.
66
66
67
-
Still, there's a drawback.
67
+
اما همچنان یک اشکال وجود دارد.
68
68
69
-
The click may occur not on the `<td>`, but inside it.
69
+
کلیک ممکن است نه روی `<td>` بلکه درون آن اتفاق بیفتد.
70
70
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>`
72
72
73
73
```html
74
74
<td>
@@ -79,13 +79,13 @@ In our case if we take a look inside the HTML, we can see nested tags inside `<t
79
79
</td>
80
80
```
81
81
82
-
Naturally, if a click happens on that`<strong>`then it becomes the value of `event.target`.
82
+
طبیعتا زمانی که یک کلیک بر روی`<strong>`انجام میشود آنگاه مقدار `event.target` برابر آن خواهد شد.
83
83
84
84

85
85
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>`اتفاق افتاده یا نه.
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.و اگر چنین است آنگاه هایلایتش کن.
107
107
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>`در جدول ارتباطی ندارد.
109
109
110
-
## Delegation example: actions in markup
110
+
## مثالی از الگوی delegation: اکشنهای مارکآپ
111
111
112
-
There are other uses for event delegation.
112
+
استفادههای دیگری هم برای event delegation وجود دارد
113
113
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` و ... وجود دارد. چطور میتوانیم این متدهارا به دکمههای مربوطه وصل کنیم؟
115
115
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`دکمهها اضافه کنیم.
117
117
118
118
```html
119
119
<button*!*data-action="save"*/!*>Click to Save</button>
120
120
```
121
121
122
-
The handler reads the attribute and executes the method. Take a look at the working example:
122
+
هندلر اتریبیوت را خوانده و متد را اجرا میکند. نگاهی به این مثال واقعی بیندازید:
123
123
124
124
```html autorun height=60 run untrusted
125
125
<divid="menu">
@@ -161,28 +161,28 @@ The handler reads the attribute and executes the method. Take a look at the work
161
161
</script>
162
162
```
163
163
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]`چیزی که ما میخواهیم نخواهد بود.
165
165
166
-
So, what advantages does delegation give us here?
166
+
خب، استفاده از الگوی delegation اینجا برای ما چه فایدهای دارد؟
167
167
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 منعطف خواهد بود، میتوانیم دکمهها را هر زمان که خواستیم اضافه/کم کنیم.
171
171
```
172
172
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 ها هم استفاده کنیم.
174
174
175
-
## The "behavior" pattern
175
+
## الگوی "behavior"
176
176
177
-
We can also use event delegation to add "behaviors" to elements *declaratively*, with special attributes and classes.
177
+
همچنین ما میتوانیم با استفاده از الگوی delegation با استفاده از اتریبیوتها و کلاسهای خاص رفتارهایی را به صورت *declaratively* به المنتها اضافه کنیم.
178
178
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.یک هندلر به وسعت داکیومنت ایونتها را ردیابی میکند و اگر یک رویداد بر روی المنتی بااتریبوت موردنظر اتفاق آنگاه عمل خواهد کرد.
182
182
183
-
### Behavior: Counter
183
+
### رفتار شمارشگر
184
184
185
-
For instance, here the attribute `data-counter`adds a behavior: "increase value on click" to buttons:
185
+
برای مثال اینجا اتریبیوت `data-counter`رفتار "مقدار را با کلیک افزایش بده" را به دکمهها اضافه میکند.
if (event.target.dataset.counter!=undefined) { //if the attribute exists...
194
+
if (event.target.dataset.counter!=undefined) { //در صورتی که اتریبیوت وجود داشته باشد..
195
195
event.target.value++;
196
196
}
197
197
198
198
});
199
199
</script>
200
200
```
201
201
202
-
If we click a button -- its value is increased. Not buttons, but the general approach is important here.
202
+
اگر بر روی یک دکمه کلیک کنیم مقدار آن افزایش مییابد. اینجا روش کلی مهم است نه دکمه ها.
203
203
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 را گسترش دادهایم.
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>` چون دومی موجب کانفلیکت خواهد شد: هندلرهای جدید جایگزین قدیمیها خواهند شد.
208
208
209
-
For real projects it's normal that there are many handlers on `document`set by different parts of the code.
209
+
برای پروژههای واقعی طبیعتا ممکن است هندلرهای زیادی روی `document`در قسمتهای مختلف کد تعریف شده باشد.
210
210
```
211
211
212
-
### Behavior: Toggler
212
+
### رفتار: تغییر وضعیت
213
213
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` داده شده را نمایش/پنهان میکند.
215
215
216
216
```html autorun run height=60
217
217
<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
236
236
</script>
237
237
```
238
238
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` میتوان اینکار را انجام داد.
240
240
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
+
این ممکن است خیلی کار مارا راحت کند. نیازی به نوشتن جاوااسکریپت برای هر المنت نیست. تنها با استفاده از رفتار. هندلری که به وسعت داکیومنت تعریف کردیم باعث میشود راه حل ما برای همهی المنتهای داخل صفحه کار کند.
242
242
243
-
We can combine multiple behaviors on a single element as well.
243
+
همچنین میتوانیم چندین رفتار را برای یک المنت ترکیب کنیم.
244
244
245
-
The "behavior" pattern can be an alternative to mini-fragments of JavaScript.
245
+
الگوی "رفتار" میتواند یک جایگزین برای mini fragment های جاوااسکریپت باشد.
246
246
247
-
## Summary
247
+
## خلاصه
248
248
249
-
Event delegation is really cool! It's one of the most helpful patterns for DOM events.
249
+
الگوی Event delegation واقعا باحال است! این الگو یکی از مفیدترین الگوها برای ایونتهای DOM است.
250
250
251
-
It's often used to add the same handling for many similar elements, but not only for that.
251
+
این الگو معمولا برای کنترل تعداد زیادی از المانهای مشابه استفاده میشود اما این تنها کاربرد آن نیست.
252
252
253
-
The algorithm:
253
+
الگوریت:
254
254
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. اگر ایونت درون المنتی که موردنظر ماست اتفاق افتاده است آنگاه ایونت را هندل کنید.
258
258
259
-
Benefits:
259
+
فواید:
260
260
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` و ابزارهای مشابه آن تعداد زیادی المان را کم/زیاد کنیم.
265
265
```
266
266
267
-
The delegation has its limitations of course:
267
+
بدون شک این الگو هم محدودیتهای خودش را دارد:
268
268
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 معمولا قابل چشمپوشی است بنابراین ما آنرا به حساب نمیآوریم.
0 commit comments