-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
849 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,192 @@ | ||
import { inlineStyle } from './utils' | ||
|
||
export default class ActionSheet { | ||
constructor () { | ||
const noop = function () {} | ||
|
||
this.options = { | ||
itemList: [], | ||
itemColor: '#000000', | ||
success: noop, | ||
fail: noop, | ||
complete: noop | ||
} | ||
} | ||
|
||
getstyle (name) { | ||
return { | ||
maskStyle: { | ||
'position': 'fixed', | ||
'z-index': '1000', | ||
'top': '0', | ||
'right': '0', | ||
'left': '0', | ||
'bottom': '0', | ||
'background': 'rgba(0,0,0,0.6)' | ||
}, | ||
actionSheetStyle: { | ||
'z-index': '4999', | ||
'position': 'fixed', | ||
'left': '0', | ||
'bottom': '0', | ||
'-webkit-transform': 'translate(0, 100%)', | ||
'transform': 'translate(0, 100%)', | ||
'width': '100%', | ||
'line-height': '1.6', | ||
'background': '#EFEFF4', | ||
'-webkit-transition': '-webkit-transform .3s', | ||
'transition': 'transform .3s' | ||
}, | ||
menuStyle: { | ||
'background-color': '#FCFCFD' | ||
}, | ||
cellStyle: { | ||
'position': 'relative', | ||
'padding': '10px 0', | ||
'text-align': 'center', | ||
'font-size': '18px' | ||
}, | ||
cancelStyle: { | ||
'margin-top': '6px', | ||
'padding': '10px 0', | ||
'text-align': 'center', | ||
'font-size': '18px', | ||
'color': '#000000', | ||
'background-color': '#FCFCFD' | ||
} | ||
} | ||
} | ||
|
||
create (options = {}) { | ||
// style | ||
const { maskStyle, actionSheetStyle, menuStyle, cellStyle, cancelStyle } = this.getstyle() | ||
|
||
// configuration | ||
Object.assign(this.options, options) | ||
const config = this.options | ||
|
||
// wrapper | ||
this.el = document.createElement('div') | ||
this.el.style.opacity = '0' | ||
this.el.style.transition = 'opacity 0.2s linear' | ||
|
||
// mask | ||
const mask = document.createElement('div') | ||
mask.setAttribute('style', inlineStyle(maskStyle)) | ||
|
||
// actionSheet | ||
this.actionSheet = document.createElement('div') | ||
this.actionSheet.setAttribute('style', inlineStyle(actionSheetStyle)) | ||
|
||
// menu | ||
this.menu = document.createElement('div') | ||
this.menu.setAttribute('style', inlineStyle(Object.assign({}, menuStyle, {color: config.itemColor}))) | ||
|
||
// cells | ||
this.cells = options.itemList.map((item, index) => { | ||
const cell = document.createElement('div') | ||
cell.className = 'taro-actionsheet__cell' | ||
cell.setAttribute('style', inlineStyle(cellStyle)) | ||
cell.textContent = item | ||
cell.dataset.tapIndex = index | ||
cell.onclick = e => this.onCellClick(e) | ||
return cell | ||
}) | ||
|
||
// cancel | ||
this.cancel = document.createElement('div') | ||
this.cancel.setAttribute('style', inlineStyle(cancelStyle)) | ||
this.cancel.textContent = '取消' | ||
|
||
// result | ||
this.cells.forEach(item => this.menu.appendChild(item)) | ||
this.actionSheet.appendChild(this.menu) | ||
this.actionSheet.appendChild(this.cancel) | ||
this.el.appendChild(mask) | ||
this.el.appendChild(this.actionSheet) | ||
|
||
// callbacks | ||
const cb = () => { | ||
this.hide() | ||
const res = { errMsg: 'showActionSheet:fail cancel' } | ||
config.fail(res) | ||
config.complete(res) | ||
} | ||
mask.onclick = cb | ||
this.cancel.onclick = cb | ||
|
||
// show immediately | ||
document.body.appendChild(this.el) | ||
setTimeout(() => { | ||
this.el.style.opacity = '1' | ||
this.actionSheet.style.transform = 'translate(0, 0)' | ||
}, 0) | ||
} | ||
|
||
show (options = {}) { | ||
const config = this.options | ||
|
||
// itemColor | ||
if (config.itemColor !== options.itemColor) this.menu.style.color = options.itemColor | ||
|
||
Object.assign(config, options) | ||
|
||
// cells | ||
const { cellStyle } = this.getstyle() | ||
|
||
options.itemList.forEach((item, index) => { | ||
if (this.cells[index]) { | ||
if (this.cells[index].textContent === item) { | ||
// content no change | ||
|
||
} else { | ||
// assign new content | ||
this.cells[index].textContent = item | ||
} | ||
} else { | ||
// create new cell | ||
const cell = document.createElement('div') | ||
cell.className = 'taro-actionsheet__cell' | ||
cell.setAttribute('style', inlineStyle(cellStyle)) | ||
cell.textContent = item | ||
cell.dataset.tapIndex = index | ||
cell.onclick = e => this.onCellClick(e) | ||
this.cells.push(cell) | ||
this.menu.appendChild(cell) | ||
} | ||
}) | ||
const cellsLen = this.cells.length | ||
const itemListLen = options.itemList.length | ||
if (cellsLen > itemListLen) { | ||
for (let i = itemListLen; i < cellsLen; i++) { | ||
this.menu.removeChild(this.cells[i]) | ||
} | ||
this.cells.splice(itemListLen, cellsLen - itemListLen) | ||
} | ||
|
||
// show | ||
this.el.style.display = 'block' | ||
setTimeout(() => { | ||
this.el.style.opacity = '1' | ||
this.actionSheet.style.transform = 'translate(0, 0)' | ||
}, 0) | ||
} | ||
|
||
onCellClick (e) { | ||
this.hide() | ||
const res = { | ||
errMsg: 'showActionSheet:ok', | ||
tapIndex: e.currentTarget.dataset.tapIndex | ||
} | ||
this.options.success(res) | ||
this.options.complete(res) | ||
} | ||
|
||
hide () { | ||
setTimeout(() => { | ||
this.el.style.opacity = '0' | ||
this.actionSheet.style.transform = 'translate(0, 100%)' | ||
setTimeout(() => { this.el.style.display = 'none' }, 200) | ||
}, 0) | ||
} | ||
} |
Oops, something went wrong.