deprecated
5 years ago
block.js
5 years ago
component.js
5 years ago
icon.svg
5 years ago
style.css
6 years ago
style.css.map
6 years ago
style.scss
5 years ago
component.js
134 lines
| 1 | const { Component } = wp.element; |
| 2 | import ReactHtmlParser from 'react-html-parser'; |
| 3 | |
| 4 | export class VKBButton extends Component { |
| 5 | |
| 6 | render() { |
| 7 | |
| 8 | const buttonColorCustom = this.props.lbColorCustom; |
| 9 | const buttonColor = this.props.lbColor; |
| 10 | const buttonType = this.props.lbType; |
| 11 | const buttonAlign = this.props.lbAlign; |
| 12 | const buttonSize = this.props.lbSize; |
| 13 | const buttonUrl = this.props.lbUrl; |
| 14 | const buttonTarget = this.props.lbTarget; |
| 15 | let fontAwesomeIconBefore = this.props.lbFontAwesomeIconBefore; |
| 16 | let fontAwesomeIconAfter = this.props.lbFontAwesomeIconAfter; |
| 17 | const richText = this.props.lbRichtext; |
| 18 | const subCaption = this.props.lbsubCaption; |
| 19 | const containerClass = ''; |
| 20 | let aClass = ''; |
| 21 | let aStyle = {}; |
| 22 | let iconBefore = ''; |
| 23 | let iconAfter = ''; |
| 24 | |
| 25 | aStyle = null; |
| 26 | aClass = `vk_button_link`; |
| 27 | |
| 28 | if (buttonType == '0' || buttonType == null || buttonType == '1') { |
| 29 | aClass = `${aClass} btn`; |
| 30 | } else { |
| 31 | aClass = `${aClass} vk_button_link-type-text`; |
| 32 | } |
| 33 | |
| 34 | // 塗り |
| 35 | if (buttonType == '0' || buttonType === null) { |
| 36 | |
| 37 | // 規定カラーの場合 |
| 38 | if (buttonColorCustom == 'undefined' || buttonColorCustom == undefined || buttonColorCustom === null) { |
| 39 | |
| 40 | aClass = `${aClass} btn-${buttonColor}`; |
| 41 | aStyle = null; |
| 42 | |
| 43 | // カスタムカラーの場合 |
| 44 | } else { |
| 45 | aStyle = { |
| 46 | backgroundColor: `${buttonColorCustom}`, |
| 47 | border: `1px solid ${buttonColorCustom}`, |
| 48 | color: `#fff`, |
| 49 | }; |
| 50 | } |
| 51 | // 塗りなし |
| 52 | } else if (buttonType === '1') { |
| 53 | // 規定カラーの場合 |
| 54 | if (buttonColorCustom == 'undefined' || buttonColorCustom == undefined || buttonColorCustom === null) { |
| 55 | aClass = `${aClass} btn-outline-${buttonColor}`; |
| 56 | aStyle = null; |
| 57 | // カスタムカラーの場合 |
| 58 | } else { |
| 59 | aStyle = { |
| 60 | backgroundColor: 'transparent', |
| 61 | border: `1px solid ${buttonColorCustom}`, |
| 62 | color: `${buttonColorCustom}`, |
| 63 | }; |
| 64 | } |
| 65 | // テキストのみ |
| 66 | } else if (buttonType === '2') { |
| 67 | // 規定カラーの場合 |
| 68 | if (buttonColorCustom == 'undefined' || buttonColorCustom == undefined || buttonColorCustom === null) { |
| 69 | aClass = `${aClass} btn-outline-${buttonColor}`; |
| 70 | aStyle = null; |
| 71 | // カスタムカラーの場合 |
| 72 | } else { |
| 73 | aStyle = { |
| 74 | color: `${buttonColorCustom}`, |
| 75 | }; |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | aClass = `${aClass} btn-${buttonSize}`; |
| 80 | |
| 81 | if (buttonAlign === 'block') { |
| 82 | aClass = `${aClass} btn-block`; |
| 83 | } |
| 84 | |
| 85 | |
| 86 | |
| 87 | //過去バージョンをリカバリーした時にiconを正常に表示する |
| 88 | if( fontAwesomeIconBefore && !fontAwesomeIconBefore.match(/<i/)){ |
| 89 | fontAwesomeIconBefore = `<i class="${fontAwesomeIconBefore}"></i>` |
| 90 | } |
| 91 | if( fontAwesomeIconAfter && !fontAwesomeIconAfter.match(/<i/)){ |
| 92 | fontAwesomeIconAfter = `<i class="${fontAwesomeIconAfter}"></i>` |
| 93 | } |
| 94 | |
| 95 | if (fontAwesomeIconBefore) { |
| 96 | |
| 97 | fontAwesomeIconBefore = fontAwesomeIconBefore.replace( / fas/g , "fas" ) |
| 98 | |
| 99 | //add class and inline css |
| 100 | const faIconFragmentBefore= fontAwesomeIconBefore.split(' '); |
| 101 | faIconFragmentBefore[1] = ' ' + faIconFragmentBefore[1] + ` vk_button_link_before ` |
| 102 | iconBefore = faIconFragmentBefore.join('') |
| 103 | } |
| 104 | if (fontAwesomeIconAfter) { |
| 105 | |
| 106 | fontAwesomeIconAfter = fontAwesomeIconAfter.replace( / fas/g , "fas" ) |
| 107 | |
| 108 | //add class and inline css |
| 109 | const faIconFragmentAfter = fontAwesomeIconAfter.split(' '); |
| 110 | faIconFragmentAfter[1] = ' ' + faIconFragmentAfter[1] + ` vk_button_link_after ` |
| 111 | iconAfter = faIconFragmentAfter.join('') |
| 112 | } |
| 113 | |
| 114 | return ( |
| 115 | <a |
| 116 | href={ buttonUrl } |
| 117 | style={ aStyle } |
| 118 | className={ aClass } |
| 119 | role={ 'button' } |
| 120 | aria-pressed={ true } |
| 121 | target={ buttonTarget ? '_blank' : null } |
| 122 | rel={ 'noopener noreferrer' } |
| 123 | > |
| 124 | { ReactHtmlParser(iconBefore) } |
| 125 | { richText } |
| 126 | { ReactHtmlParser(iconAfter) } |
| 127 | { /*サブキャプションが� |
| 128 | �力された時のみ表示*/ } |
| 129 | { subCaption && <p className={ 'vk_button_link_subCaption' }>{ subCaption }</p> } |
| 130 | </a> |
| 131 | ); |
| 132 | } |
| 133 | } |
| 134 |