index.d.ts 5.09 KB
Newer Older
Kyle Roach's avatar
Kyle Roach committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150
// Type definitions for react-native-picker
// Project: https://github.com/beefe/react-native-picker
// Definitions by: Kyle Roach <https://github.com/iRoachie>
// TypeScript Version: 2.3.2

/**
 * Options to create a picker object
 * 
 * @interface PickerOptions
 */
interface PickerOptions {
    /**
     * Items to be passed into the picker
     * 
     * Default is an empty array
     * 
     * @type {any[]}
     * @memberof PickerOptions
     */
    pickerData?: any[]

    /**
     * The selected item in the picker
     * 
     * Accepts the item in an array
     * Example: ['selected']
     * 
     * Default is an empty array
     * 
     * @type {any[]}
     * @memberof PickerOptions
     */
    selectedValue?: any[]

    /**
     * Title text shown at the top of the picker
     * 
     * Default value is 'pls select'
     * 
     * @type {string}
     * @memberof PickerOptions
     */
    pickerTitleText?: string

    /**
     * Text for the confirm button
     * 
     * Default value is 'confirm'
     * 
     * @type {string}
     * @memberof PickerOptions
     */
    pickerConfirmBtnText?: string

    /**
     * Text for the cancel button
     * 
     * Default value is 'cancel'
     * 
     * @type {string}
     * @memberof PickerOptions
     */
    pickerCancelBtnText: string

    /**
     * The color of the text for the confirm button
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [1, 186, 245, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerConfirmBtnColor?: number[]

    /**
     * The color of the text for the cancel button
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [1, 186, 245, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerCancelBtnColor?: number[]

    /**
     * The color of the Title text
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [20, 20, 20, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerTitleColor?: number[]

    /**
     * The background color of the toobar
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [232, 232, 232, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerToolBarBg?: number[]

    /**
     * Background color of the picker
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [196, 199, 206, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerBg?: number[]


    /**
     * Font size of the items in the toolbar
     * 
     * Default is 16
     * 
     * @type {number}
     * @memberof PickerOptions
     */
    pickerToolBarFontSize?: number

    /**
     * Font size of the items in the picker
     * 
     * Default is 16
     * 
     * @type {number}
     * @memberof PickerOptions
     */
    pickerFontSize?: number

151 152 153 154 155 156 157 158 159 160
    /**
     * Row height of the items in the picker
     * 
     * Default is 24
     * 
     * @type {number}
     * @memberof PickerOptions
     */
    pickerRowHeight?: number

Kyle Roach's avatar
Kyle Roach committed
161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
    /**
     * Color of the text for the items in the picker
     * 
     * Accepts rgba values as an array
     * [R, G, B, A]
     * 
     * Default is [31, 31, 31, 1]
     * 
     * @type {number[]}
     * @memberof PickerOptions
     */
    pickerFontColor?: number[]

    /**
     * Event fired when user confirms the picker
     * 
     * Returns the selected item
     * 
     * @param {any[]} item 
     * 
     * @memberof PickerOptions
     */
    onPickerConfirm?(item: any[]): void

    /**
     * Event fired when user cancels the picker
     * 
     * Returns the selected item
     * 
     * @param {any[]} item 
     * 
     * @memberof PickerOptions
     */
    onPickerCancel?(item: any[]): void


    /**
     * Event fired when user scrolls over or selects a value in the picker
     * 
     * Returns the selected item
     * 
     * @param {any[]} item 
     * 
     * @memberof PickerOptions
     */
    onPickerSelect?(item: any[]): void
}


export default class Picker {
    /**
     * Creates a new Picker objects
     * 
     * @static
     * @param {PickerOptions} options 
     * 
     * @memberof Picker
     */
    static init(options: PickerOptions): void

    /**
     * Shows the picker
     * 
     * @static
     * 
     * @memberof Picker
     */
    static show(): void

    /**
     * Hides the picker
     * 
     * @static
     * 
     * @memberof Picker
     */
    static hide(): void

    /**
     * Toggles the visibility of the picker
     * 
     * @static
     * 
     * @memberof Picker
     */
    static toggle(): void

    /**
     * Sets an item in the picker as the selected value
     * 
     * Accepts the item in an array
     * Example: ['selected']
     * 
     * @static
     * @param {any[]} item 
     * 
     * @memberof Picker
     */
    static select(item: any[]): void
    
    /**
     * Checks if the picker is showing currently
     * 
     * @static
     * @returns {boolean} 
     * 
     * @memberof Picker
     */
    static isPickerShow(): boolean
}