-
Notifications
You must be signed in to change notification settings - Fork 0
/
21.0.Lesson_Multi-Controller_Factory.html
152 lines (86 loc) · 4.27 KB
/
21.0.Lesson_Multi-Controller_Factory.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html lang="tr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>21.0.Lesson_Multi-Controller_Factory</title>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.10/angular.min.js"></script>
<script>
var ControllerExample = angular.module("myapp", []);
//Kontrollerin üstünde bir faktory tanımlandı
ControllerExample.factory("firstFactory", function(){
//isimler adında bir dizi oluşturuldu ve bu değerleri geri döndürüldü
isimler = ["Elif", "Fırat", "Ali", "Veli", "Ayşe", "Nur"];
return isimler;
});
//* NOT: Oluşturulan Factory hangi controller içinde kullanılacaksa eklenmelidir
ControllerExample.controller("mycontrol", function( $scope, firstFactory ){
$scope.text1 = "mycontrol tarafından yönetilen alan";
//firstFactory alanındaki değerler isimEkle alanına atandı
$scope.isimEkle = firstFactory;
$scope.insertFunction = function(){
$scope.isimEkle.push( $scope.insertName );
$scope.insertName ="";
}
});
ControllerExample.controller("mycontrol2", function( $scope, firstFactory ){
$scope.text2 = "mycontrol2 tarafından yönetilen alan";
//factory ile oluşturulan değerler isimGoster alanına atandı
$scope.isimGoster = firstFactory;
});
ControllerExample.controller("mycontrol3", function ($scope) {
$scope.products = ["Milk", "Bread", "Cheese"];
$scope.addItem = function (Item) {
$scope.errortext = "";
if (!$scope.AddMe) {
return;
}
if ($scope.products.indexOf($scope.AddMe) == -1) {
$scope.products.push($scope.AddMe);
$scope.AddMe="";
} else {
$scope.errortext = "The item is already in your shopping list.";
}
}
$scope.removeItem = function (index) {
$scope.errortext = "";
$scope.products.splice(index, 1);
}
});
</script>
</head>
<!--
FACTORY: Controller için de tanımlanan yapılar sadece tanımlanan alanlar içinde kullanılır, eğer başka alanlar tarafından kullanılmak isternirse Factory devreye girmektedir.
Factory ile tanımlama yaparak Controller'lar arası iletişim kurulabilmektedir.
-->
<body ng-app="myapp">
<div ng-controller="mycontrol">
<!-- mycontrol control alanında bulunan değer expressions ile ekranda gösterildi -->
{{text1}}<br><br>
<!-- firstFactory adıyla tanımlanan faktory'nin içinde bulunan isimler dizisine isim eklemek için input alanı oluşturuldu ve enter ile tetiklendirildi -->
İsim ekleyiniz : <input type="type" ng-model="insertName" placeholder="Eklenecek isim" ng-keyup="$event.keyCode == 13 ? insertFunction():null">
</div>
<hr><!-- -->
<div ng-controller="mycontrol2">
<!-- mycontrol2 control alanında bulunan değer expressions ile ekranda gösterildi -->
{{text2}}
<ul>
<li ng-repeat="goster in isimGoster">
{{goster}}
</li>
</ul>
</div>
<hr><!-- -->
<div ng-controller="mycontrol3">
<input type="text" ng-model="AddMe">
<button ng-click="addItem(AddMe)">ADD</button>
<br>
<ul>
<li ng-repeat="product in products">
<a ng-click="removeItem($index)"> X - </a>{{product}}
</li>
<li ng-show="errortext" style="color:darkred; font-family:'Open Sans'">{{errortext}}</li>
</ul>
</div>
</body>
</html>