-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* feat: vertical oriented button group This commit added a new prop(orientation) to the current OuiButtonGroup, the possible values are `horizontal` and `vertical`. The default value is `horizontal` which match the current UI behavior. With `vertical` prop, the button group will be oriented vertically. related issue: #659 Signed-off-by: Yulong Ruan <[email protected]> * doc(changelog): add changelog for vertical button group Signed-off-by: Yulong Ruan <[email protected]> * fix(lint): fix sass lint Signed-off-by: Yulong Ruan <[email protected]> --------- Signed-off-by: Yulong Ruan <[email protected]> (cherry picked from commit 3c191a5) Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> # Conflicts: # CHANGELOG.md Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Viraj Sanghvi <[email protected]>
- Loading branch information
1 parent
f86a916
commit d0ef965
Showing
7 changed files
with
840 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
* | ||
* Modifications Copyright OpenSearch Contributors. See | ||
* GitHub history for details. | ||
*/ | ||
|
||
import React, { useState, Fragment } from 'react'; | ||
|
||
import { | ||
OuiButtonGroup, | ||
OuiSpacer, | ||
OuiTitle, | ||
} from '../../../../src/components'; | ||
|
||
import { htmlIdGenerator } from '../../../../src/services'; | ||
|
||
const idPrefix = htmlIdGenerator()(); | ||
const idPrefix3 = htmlIdGenerator()(); | ||
|
||
export default () => { | ||
const [toggleIdSelected, setToggleIdSelected] = useState(`${idPrefix}1`); | ||
|
||
const onChange = (optionId) => { | ||
setToggleIdSelected(optionId); | ||
}; | ||
|
||
const toggleButtons = [ | ||
{ | ||
id: `${idPrefix}0`, | ||
label: 'Option one', | ||
}, | ||
{ | ||
id: `${idPrefix}1`, | ||
label: 'Option two', | ||
}, | ||
{ | ||
id: `${idPrefix}2`, | ||
label: 'Option three', | ||
}, | ||
]; | ||
|
||
const toggleButtonsIcons = [ | ||
{ | ||
id: `${idPrefix3}0`, | ||
label: 'Align left', | ||
iconType: 'editorAlignLeft', | ||
}, | ||
{ | ||
id: `${idPrefix3}1`, | ||
label: 'Align center', | ||
iconType: 'editorAlignCenter', | ||
}, | ||
{ | ||
id: `${idPrefix3}2`, | ||
label: 'Align right', | ||
iconType: 'editorAlignRight', | ||
isDisabled: true, | ||
}, | ||
]; | ||
|
||
const toggleButtonsIconsMulti = [ | ||
{ | ||
id: `${idPrefix3}3`, | ||
label: 'Bold', | ||
name: 'bold', | ||
iconType: 'editorBold', | ||
}, | ||
{ | ||
id: `${idPrefix3}4`, | ||
label: 'Italic', | ||
name: 'italic', | ||
iconType: 'editorItalic', | ||
isDisabled: true, | ||
}, | ||
{ | ||
id: `${idPrefix3}5`, | ||
label: 'Underline', | ||
name: 'underline', | ||
iconType: 'editorUnderline', | ||
}, | ||
{ | ||
id: `${idPrefix3}6`, | ||
label: 'Strikethrough', | ||
name: 'strikethrough', | ||
iconType: 'editorStrike', | ||
}, | ||
]; | ||
|
||
const [toggleIconIdSelected, setToggleIconIdSelected] = useState( | ||
`${idPrefix3}1` | ||
); | ||
const [toggleIconIdToSelectedMap, setToggleIconIdToSelectedMap] = useState( | ||
{} | ||
); | ||
|
||
const onChangeIcons = (optionId) => { | ||
setToggleIconIdSelected(optionId); | ||
}; | ||
|
||
const onChangeIconsMulti = (optionId) => { | ||
const newToggleIconIdToSelectedMap = { | ||
...toggleIconIdToSelectedMap, | ||
...{ | ||
[optionId]: !toggleIconIdToSelectedMap[optionId], | ||
}, | ||
}; | ||
|
||
setToggleIconIdToSelectedMap(newToggleIconIdToSelectedMap); | ||
}; | ||
|
||
return ( | ||
<Fragment> | ||
<OuiButtonGroup | ||
orientation="vertical" | ||
legend="This is a vertical group" | ||
options={toggleButtons} | ||
idSelected={toggleIdSelected} | ||
onChange={(id) => onChange(id)} | ||
/> | ||
| ||
<OuiButtonGroup | ||
orientation="vertical" | ||
legend="Text align" | ||
options={toggleButtonsIcons} | ||
idSelected={toggleIconIdSelected} | ||
onChange={(id) => onChangeIcons(id)} | ||
isIconOnly | ||
/> | ||
| ||
<OuiButtonGroup | ||
orientation="vertical" | ||
legend="Text style" | ||
options={toggleButtonsIconsMulti} | ||
idToSelectedMap={toggleIconIdToSelectedMap} | ||
onChange={(id) => onChangeIconsMulti(id)} | ||
type="multi" | ||
isIconOnly | ||
/> | ||
<OuiSpacer /> | ||
<OuiTitle size="xxs"> | ||
<h3>Compressed</h3> | ||
</OuiTitle> | ||
<OuiButtonGroup | ||
buttonSize="compressed" | ||
orientation="vertical" | ||
legend="This is a vertical group" | ||
options={toggleButtons} | ||
idSelected={toggleIdSelected} | ||
onChange={(id) => onChange(id)} | ||
/> | ||
| ||
<OuiButtonGroup | ||
buttonSize="compressed" | ||
orientation="vertical" | ||
legend="Text align" | ||
options={toggleButtonsIcons} | ||
idSelected={toggleIconIdSelected} | ||
onChange={(id) => onChangeIcons(id)} | ||
isIconOnly | ||
/> | ||
| ||
<OuiButtonGroup | ||
buttonSize="compressed" | ||
orientation="vertical" | ||
legend="Text style" | ||
options={toggleButtonsIconsMulti} | ||
idToSelectedMap={toggleIconIdToSelectedMap} | ||
onChange={(id) => onChangeIconsMulti(id)} | ||
type="multi" | ||
isIconOnly | ||
/> | ||
</Fragment> | ||
); | ||
}; |
Oops, something went wrong.