မင်္ဂလာပါ။ အရင်ဦးဆုံး ကျွန်တော် ကိုယ့်ကိုယ်ကို အရင် မိတ်ဆက်ပေးချင်ပါတယ် ခင်ဗျာ။
ကျွန်တော့်နာမည် ဌေးမင်းခေါင် ဖြစ်ပါတယ်။ ယခု Spiceworks Myanmar ကုမ္ပဏီမှာ PHP Web Developer အနေနဲ့ အလုပ်လုပ်လျက်ရှိပါတယ်။ အရင်တစ်ခေါက်တုန်းက VUE JavaScript Framework ( Introduction Part – 1 ) ကို မိတ်ဆက်ပေးခဲ့ပြီး ဖြစ်ပါတယ်။ အခုတစ်ခါမှာတော့ Part 2 ကို ဆက်လက် တင်ပြပေးသွားမှာ ဖြစ်ပါတယ်။
Part 1 မှာတော့
1. VUE အကြောင်းအရာနှင့် အသုံးပြုပုံ
2. VUE ကို ဘယ်လို အသံထွက်မလဲ ?
3. VUE ဆိုတာ ဘာလဲ ?
4. VUE ကို ဘယ်လို စတင် အသုံးပြုမလဲ။
5. VUE Instance ၊ Interpolations
ဆိုပြီး မိတ်ဆက်ပေးခဲ့ပါတယ်။
ယခု Part 2 မှာတော့
1. Computed Properties and Watchers
2. Methods
3. Computed Setter ( get & set events )
4. Class and Style Bindings
5. Binding Inline Styles တို့ကို အရှင်းလင်းဆုံး ဖြစ်အောင် တတ်နိုင်သလောက် တင်ပြပေးသွားမှာ ဖြစ်ပါတယ်။
Computed Properties and Methods
ဒီမှာဆိုရင်တော့ ကိုယ်လုပ်ဆောင်မယ့် Function တွေ ၊ Properties တွေကို အသုံးချပြီး ရေးသားမှာ ဖြစ်ပါတယ်။ ဒါကြောင့် ၎င်းကို ပိုမို နားလည်အောင် Example Function တွေ ၊ Logic စစ်တဲ့ Code တွေရဲ့ အသုံးပြုနည်းကို ရှင်းပြပေးသွားမှာ ဖြစ်ပါတယ်။
JS Code
01.
var
vm =
new
Vue({
02.
el:
'#example'
,
03.
data: {
04.
message:
'Hello'
05.
},
06.
computed: {
07.
// a computed getter
08.
reversedMessage:
function
() {
09.
// `this` points to the vm instance
10.
return
this
.message.split(
''
).reverse().join(
''
)
11.
}
12.
},
13.
methods : {
14.
chVal :
function
(){
15.
this
.message =
'Good Bye'
16.
}
17.
}
18.
})
HTML Code
01.
<
div
id
=
"example"
>
02.
03.
{{ message.split('').reverse().join('') }}
04.
05.
<
hr
>
06.
07.
{{ message }}
08.
09.
<
hr
>
10.
11.
{{ reversedMessage }}
12.
13.
<
hr
>
14.
15.
<
button
>Change Value</
button
>
16.
17.
</
div
>
Code Line 03 – {{ message.split(”).reverse().join(”) }} မှာဆိုရင်တော့ ရိုးရှင်းပြီး string function တစ်ခုဖြစ်တဲ့ reverse ( စာကို ပြောင်းပြန် လုပ်ခြင်း ) ကို အသုံးပြုထားပါတယ်။
Code Lin 07 – {{ message }} ကတော့ နဂို ရှိတဲ့ တန်ဖိုးအတိုင်း ထုတ်ပြပါလိမ့်မယ်။
Code Line 11 – {{ reversedMessage }} မှာတော့ js မှာရေးထားတဲ့ computed အောက်က properties ကို ခေါ်လိုက်တာဖြစ်တဲ့အတွက် reversedMessage function က ပြန်လာမယ့် တန်ဖိုးအတိုင်း ပြမှာ ဖြစ်ပါတယ်။ Output ကတော့ Code Line 03 နဲ့ တူပါလိ့မ်မယ်။ သို့သော် Code Line 03 ဟာဆိုရင် function code တွေ condition တွေ များလာပါက simple မဖြစ်တော့ဘဲ complex ဖြစ်လာမှာ ဖြစ်ပါတယ်။
Code Line 15 – @click=”chVal” ဟာဆိုရင်တော့ js မှာရေးထားတဲ့ methods function ကို event @click ထဲ ထည့်လိုက်တာ ဖြစ်တဲ့အတွက် button ကို click လိုက်ရင် methods အောက်က chVal function က အလုပ်လုပ်မှာ ဖြစ်ပါတယ်။ chVal function က vue data ‘message’ ရဲ့ တန်ဖိုးကို ‘Good Bye’ ဆိုပြီး ပြောင်းလိုက်တာဖြစ်ပါတယ်။ vue data ‘message’ တန်ဖိုးက ‘Hello’ ကနေ ‘Good Bye’ ဆိုပြီး ပြောင်းသွားတဲ့ အတွက် Output တွေလည်း ‘Good Bye’ ဆိုပြီး ပြောင်းလဲသွားမှာ ဖြစ်ပါတယ်။
Computed Vs Watched Property
VUE ဟာဆိုရင်တော့ Data Changes တွေ အတွက် ပိုမိုအဆင်ပြေစွာ ရေးသားနိုင်အောင် လုပ်ပေးထားပါတယ်။
ဥပမာ Full Name ကို Output ထုတ်မယ်။ fullName ကို ရဖို့ firstName နဲ့ lastName ကို Concat ရမယ်ဆိုပါတော့။
HTML Code
1.
<
div
id
=
"demo"
>Long Method : {{ fullName }}</
div
>
2.
3.
<
div
id
=
"demo2"
>Short Method : {{ fullName }}</
div
>
4.
5.
<
hr
>
6.
<
button
>Change Value</
button
>
ပထမ တစ်နည်း ကတော့ fullName ရဖို့ firstName နဲ့ lastName ကို ‘watch’ Method အောက်မှာ concat လုပ်ပြီး ထုတ်ထားခြင်း ဖြစ်ပါတယ်။
JS Code ( Using ‘watch’ Method )
01.
window.onload =
function
() {
02.
// Using Watch Method
03.
var
vm1 =
new
Vue({
04.
el:
'#demo'
,
05.
data: {
06.
firstName:
'Foo'
,
07.
lastName:
'Way'
,
08.
fullName:
'Foo Way'
09.
},
10.
watch: {
11.
firstName:
function
(val) {
12.
this
.fullName = val +
' '
+
this
.lastName
13.
},
14.
lastName:
function
(val) {
15.
this
.fullName =
this
.firstName +
' '
+ val
16.
}
17.
}
18.
})
19.
20.
$(
'button'
).click(
function
(){
21.
vm1.firstName =
"Long"
;
22.
vm1.lastName=
"Name"
;
23.
});
24.
}
ဒုတိယ တစ်နည်းဖြစ်တဲ့ ‘computed’ နည်းကို သုံးမယ်ဆိုရင် ပိုမိုလွယ်ကူပြီး output က တော့ အတူတူဘဲ ထွက်မှာ ဖြစ်ပါတယ်။
JS Code ( Using ‘computed’ Method )
01.
window.onload =
function
() {
02.
// Using Computed Method
03.
var
vm2 =
new
Vue({
04.
el:
'#demo2'
,
05.
data: {
06.
firstName:
'Foo'
,
07.
lastName:
'Way'
08.
},
09.
computed: {
10.
fullName:
function
() {
11.
return
this
.firstName +
' '
+
this
.lastName;
12.
}
13.
}
14.
})
15.
16.
$(
'button'
).click(
function
(){
17.
vm2.firstName =
"Short"
;
18.
vm2.lastName=
"Way"
;
19.
});
20.
}
Computed Setter ( get & set events )
ဒါကတော့ computed properties မှာ get event နဲ့ set event တွေကို ထည့်သွင်း အသုံးပြုမှာ ဖြစ်ပါတယ်။
‘get’ event ဆိုတာ output ကို ရယူတာဖြစ်ပြီး ‘set’ event ကတော့ ကိုယ်လိုချင်တဲ့ output ရဖို့ value ထည့်ပေးခြင်း ဖြစ်ပါတယ်။
ဥပမာ – var a = ‘Aung’; // set
alert(a); // get
HTML Code
1.
<
div
id
=
"demo"
>{{ firstName }} : {{ lastName }} = {{ fullName }}</
div
>
2.
3.
4.
<
hr
>
5.
6.
<
button
>Change Value</
button
>
JS Code
01.
window.onload =
function
() {
02.
03.
var
vm1 =
new
Vue({
04.
el:
'#demo'
,
05.
data: {
06.
firstName:
''
,
07.
lastName :
''
08.
},
09.
computed: {
10.
fullName: {
11.
// get event
12.
get:
function
() {
13.
return
this
.firstName +
' '
+
this
.lastName
14.
},
15.
// set event
16.
set:
function
(newValue) {
17.
var
names = newValue.split(
' '
)
18.
this
.firstName = names[0]
19.
this
.lastName = names[names.length - 1]
20.
}
21.
}
22.
}
23.
})
24.
25.
vm1.fullName =
'Kyaw Kyaw'
;
26.
27.
$(
'button'
).click(
function
(){
28.
vm1.fullName =
'Hla Pyoe'
;
29.
});
30.
31.
}
ဒီ JS Code မှာ ဆိုရင်တော့ ‘fullName’ properties ကို ‘get’ method မှာ first name နဲ့ second name ကို concat လုပ်ပြီး return ပြန်ထားပြီး ‘set’ method မှာ ဆိုရင်တော့ fullName တန်ဖိုး ပေးလိုက်ပြီး firstName နဲ့ lastName ကို ပြောင်းလဲလိုက်တာ ဖြစ်ပါတယ်။
Computed Properties ၊ Watcher ၊ ‘get’ ‘set events များအတွက် Source Code များကို download ဆွဲပြီး လေ့လာနိုင်ပါတယ်။
Class and Style Bindings
DOM Element တွေရဲ့ CSS Style တွေ Inline Style တွေကို VUE JS က တဆင့် ထိန်းချုပ်ဖို့အတွက် အသုံးပြုနိုင်ပါတယ်။ Style Bindings ဆိုတဲ့အတိုင်း CSS Style တွေကို VUE JS ကို အသုံးပြုပြီး value များနဲ့ bind ပြီး သုံးလို့ ရသလို condition များနဲ့လည်း ထိန်းချုပ်နိုင်မှာ ဖြစ်ပါတယ်။
Syntax for Style Bindings
HTML Code
1.
<
div
id
=
"example"
>
2.
3.
4.
<
div
>Inline CSS</
div
>
5.
6.
7.
</
div
>
JS Code
01.
window.onload =
function
() {
02.
new
Vue({
03.
el:
'#example'
,
04.
data : {
05.
activeColor :
'red'
,
06.
fontSize : 12
07.
}
08.
})
09.
}
Style Bindings လုပ်မယ်ဆိုရင် js မှာ vue data ရဲ့ object key name ကို ကိုယ်လုပ်မယ့် style ရဲ့ value နဲ့ တူအောင် ပေးထားလိုက်ပြီး v-bind လို့ ရေးလိုက်တာနဲ့ style bindings ဖြစ်သွားပါတယ်။
Style Object Bindings
သူကတော့ style တွေ တစ်ခုချင်းစီ inline မှာ မရေးတော့ဘဲ js မှာဘဲ data တစ်ခုအောက် စုရေးပြီးတော့ အဲ့ data object ကို v-bind သုံးပြီး ပြန်ခေါ်တာဖြစ်ပါတယ်။
HTML Code
1.
<
div
id
=
"example"
>
2.
<
div
>Inline CSS</
div
>
3.
</
div
>
JS Code
01.
window.onload =
function
() {
02.
03.
new
Vue({
04.
el:
'#example'
,
05.
data : {
06.
styleObject : {
07.
color:
'red'
,
08.
fontSize :
'12px'
09.
}
10.
}
11.
})
12.
13.
}
styleObject မှာဆိုရင်တော့ ကိုယ်ပေးမယ့် style မှာ style name ဖြစ်တဲ့ color တို့ fontSize တို့ကိုတော့ key name အနေနဲ့ သတ်မှတ်ပေးရမှာဖြစ်ပြီး အဲ့နောက်မှာ ကိုယ် သတ်မှတ်ချင်တဲ့ တန်ဖိုးကို ထည့်ပေးရတာ ဖြစ်ပါတယ်။
Output ကတော့ color က အနီ ဖြစ်ပြီး font အရွယ်အစားကတော့ 12 ဖြစ်နေမှာ ဖြစ်ပါတယ်။ Output နှစ်ခုက တူနေမှာ ဖြစ်ပေမယ့် ဒုတိယနည်းဖြစ်တဲ့ styleObject ကတော့ ပိုမို လွယ်ကူပြီး simple ဖြစ်ပါတယ်။
Multiple Style Objects Bindings
Multiple ဆိုတဲ့အတိုင်း styleObject ကို တစ်ခုမက နှစ်ခု သုံးခုကို တစ်ပြိုင်တည်း ထည့်ပေးသည့်အခါ အသုံးပြုနိုင်ပါတယ်။
Class Style Bindings
Class Binding ကတော့ ‘class’ နာမည်တွေကို ထိန်းချုပ်တဲ့အခါမှာ အသုံးပြုတာဖြစ်ပါတယ်။
HTML Code
1.
<
div
id
=
"example"
>
2.
<!-- Override baseStyles with overridingStyles
3.
if same CSS Attribute -->
4.
<
div
>CSS Override</
div
>
5.
6.
<!-- Multiple Array -->
7.
<
div
>Multiple Inline CSS</
div
>
8.
</
div
>
JS Code
01.
window.onload =
function
() {
02.
03.
new
Vue({
04.
el:
'#example'
,
05.
data : {
06.
baseStyles : {
07.
color:
'white'
,
08.
backgroundColor :
'red'
,
09.
fontSize :
'12px'
10.
},
11.
overridingStyles : {
12.
color:
'blue'
,
13.
paddingTop :
'20px'
,
14.
fontWeight :
'bold'
,
15.
fontSize:
'25px'
16.
}
17.
}
18.
})
19.
20.
}
ဒီ Code မှာဆိုရင်တော့ baseStyles ဆိုတဲ့ Object နဲ့ overridingStyles ဆိုတဲ့ Object ကို array ပုံစံ v-bind ကို သုံးပြီး လုပ်ထားခြင်း ဖြစ်ပါတယ်။ အဲ့မှာဆိုရင်တော့ baseStyles နဲ့ overridingStyles မှာ တူနေတဲ့ color နဲ့ fontSize မှာ overridingStyles က တန်ဖိုးကိုဘဲ ယူမှာ ဖြစ်ပါတယ်။
CSS Style Binding များအတွက် Source Code များကို ဤ နေရာမှာ download ဆွဲပြီး လေ့လာနိုင်ပါတယ်။
အခုဆိုရင်တော့ Methods နဲ့ Properties အကြောင်း၊ Objects Binding ၊ Style Bindings ၊ Class Bindings တွေ အကြောင်းကို ကျွန်တော် သိထားသလောက် အတတ်နိုင်ဆုံး ရှင်းရှင်းလင်းလင်း ဖြစ်အောင် တင်ပြ ရေးသားထားခြင်း ဖြစ်ပါတယ်။ နောက်ဆက်လက်၍ ကျန်ရှိနေသေးသော Condition Rendering ၊ v-For ( Looping ) နဲ့ Components တွေ အကြောင်းကို ရေးသားပေးသွားမှာ ဖြစ်တဲ့အတွက်၊ ဆက်လက် ဖတ်ရှုပေးကြပါဦးလို့ တိုက်တွန်းလိုက်ပါရစေဗျာ။ စာဖတ်သူ အပေါင်း သာယာသော နေ့ရက်လေးတွေ ပိုင်ဆိုင်ကြပါစေ။ အခုလို လာရောက် ဖတ်ရှုပေးတဲ့အတွက်လည်း ကျေးဇူးအထူးတင်ပါတယ် ခင်ဗျာ။