LWC GroupButtonコンポーネント自分で作る
1.目的
LWCでのループ回す方法は<template for:eatch={items} for:item="item" for:index="idx">
ですが、但しタグ中には<template if:true>
でインデックスを判断できないため、今回<template for:eatch={items} for:item="item" for:index="idx">
でループ回す中にインデックスを判断する方法を紹介しようと思います。
2.ソース構成図
lwc
├─groupButton
└─groupButtonContainer
groupButton
lwc
├─groupButton
└─groupButtonContainer
<template>
<div class="slds-button-group" role="group">
<template for:each={buttonList} for:item='item' for:index='index'>
{getIndex}
<template if:true={isActive}>
<button key={item.id} class="slds-button slds-button_brand" onclick={onClickHandler}
name={item.value}>{item.value}
</button>
</template>
<template if:false={isActive}>
<button key={item.id} class="slds-button slds-button_neutral" onclick={onClickHandler}
name={item.value}>{item.value}
</button>
</template>
</template>
</div>
</template>
import { LightningElement, api } from 'lwc';
export default class GroupButton extends LightningElement {
//インデックス
@api activeIndex;
//ボタンリスト
@api buttonList;
//インデックス初期化
id = -1;
/**
* インデックス取得
*/
get getIndex() {
this.id++;
}
/**
* アクティブかを判断する
*/
get isActive(){
return Number(this.activeIndex) === this.id;
}
/**
* グループボタン押下
* @param {*} event
*/
onClickHandler(event) {
let target = event.target;
let clickedButton = this.template.querySelector('.slds-button_brand');
clickedButton.classList.remove('slds-button_brand');
clickedButton.classList.add('slds-button_neutral');
target.classList.remove('slds-button_neutral');
target.classList.add('slds-button_brand');
// debugger;
this.dispatchEvent(new CustomEvent('select', {
detail: target.name
}));
}
}
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>51.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
groupButtonContainer
<template>
<div class="slds-card" style="height: 300px;width:1200px">
<c-group-button button-list={buttonList} active-index="1"></c-group-button>
</div>
</template>
import { LightningElement } from 'lwc';
export default class GroupButtonContainer extends LightningElement {
buttonList = [{
id: 0,
value: 'ボタン1'
},
{
id: 1,
value: 'ボタン2'
},
{
id: 2,
value: 'ボタン3'
},
{
id: 3,
value: 'ボタン4'
},
{
id: 4,
value: 'ボタン5'
}]
}
<?xml version="1.0" encoding="UTF-8"?>
<LightningComponentBundle xmlns="http://soap.sforce.com/2006/04/metadata">
<apiVersion>52.0</apiVersion>
<isExposed>false</isExposed>
</LightningComponentBundle>
3.ロカールで動作確認
groupButtonContainern中に右クリックし、SFDX:Preview Component Locally
を押下する
Use Desktop Browser
を選択する
サーバを立ち上げて、ブラウザを自動的に開く
Author And Source
この問題について(LWC GroupButtonコンポーネント自分で作る), 我々は、より多くの情報をここで見つけました https://qiita.com/MADAOU/items/187f66499f741652f84d著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .