1.3.11 • Published 4 years ago

@raffobaffo/vue-wait-button v1.3.11

Weekly downloads
-
License
MIT
Repository
-
Last release
4 years ago

CRUD Button

📖 Usage

1. Install:

npm i @raffobaffo/vue-wait-button

2. Require:

    import Button from '@raffobaffo/vue-wait-button'

    export default {
        name: 'app',
        components: {
            Button
        }

3. Use in Your Components

<template>
  <div style="display: flex;flex-direction: column;padding: 1em;">
 
         <Button @click="clickFakeSave()"
                 :animate = "true"
                 :active="shouldSave"
                 :acting="isSaving"
                 :inactiveMessage="'No changes to save'"
                 :activeMessage="'Save changes'"
                 :actingMessage="'Saving'" />
       </div>

Vue-Crud-Button Props

Vue-Crud-Button props. name, type, extras:

Option NameTypeDefaultDescription
actingBooleanfalseShould be True when @click callback can't be called because a CRUD operation is in progress. Ex. Saving changes in description field
activeBooleantrueShould be True when @click callback can be called. Ex. Description text changed
positionsObjectx: 'center', y: 'middle'X and Y position of the component inside parent container
activeMessageString"Click me"Text to display inside the button when @click callback can be called
actingMessageString"Wait..."Text to display inside the button when a CRUD operation is in progress.
inactiveMessageString"Clicked"Text to display inside the button when @click callback can't be called
animateBooleantrueUse transitions for state change. Use velocity.js
buttonStyleObjectsee: Styling the buttonStyling

✔ Styling the button:

This is the default object to style the button

 {
        active: {

            'backgroundColor': '#fff',
            'backgroundColorHover': '#4b4b4b',
            'borderColor': '#575757',
            'borderColorHover': '#2e2e2e',
            'color': '#4b4b4b',
            'colorHover': '#fcfcfc',
            'fontSize': 'larger',
            'fontWeight': 800
        },

        acting: {

            'backgroundColor': '#fff',
            'backgroundColorHover': '#ff8900',
            'borderColor': '#ff8900',
            'borderColorHover': '#ff6405',
            'color': '#ff6405',
            'colorHover': '#fff',
            'fontSize': 'larger',
            'fontWeight': 800
        },

        inactive: {

            'backgroundColor': '#fff',
            'backgroundColorHover': '#f2f2f2',
            'borderColor': '#e1e1e1',
            'borderColorHover': '#bfbfbf',
            'color': '#848484',
            'colorHover': '#484848',
            'fontSize': 'larger',
            'fontWeight': 800
        }
    }

Change them accordingly to your needs, ex.

 
         <Button @click="clickFakeSave()"
                 :animate = "true"
                 buttonStyle="{active:{ color:'red' }"
                 :active="shouldSave"
                 :acting="isSaving"
                 :inactiveMessage="'No changes to save'"
                 :activeMessage="'Save changes'"
                 :actingMessage="'Saving'" />
1.3.11

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

0.1.21

4 years ago

0.1.2

4 years ago

0.1.0-0.01-BS3

4 years ago

0.1.0-0.01-BS21

4 years ago

0.1.0-0.01-BS2

4 years ago

0.1.0-0.01-BS1

4 years ago

0.1.0-0.01-BS

4 years ago

0.1.0-0.01S

4 years ago

0.1.0-0.1

4 years ago

0.1.3-c

4 years ago

0.1.3-b

4 years ago

0.1.2-b

4 years ago

0.1.1-b

4 years ago

0.1.1

4 years ago

0.1.0

4 years ago