Coder Social home page Coder Social logo

Custom View about sweet-alert HOT 2 CLOSED

uxweb avatar uxweb commented on August 26, 2024
Custom View

from sweet-alert.

Comments (2)

uxweb avatar uxweb commented on August 26, 2024

Thank you so much for being interested in this package.

I left out some options to configure the js sweet alert function.

I think those options are more related to be set from the frontend part, like the color of the button and such.

The current options the package puts into the session are these:

  • text
  • type
  • title
  • confirmButtonText
  • showConfirmButton
  • allowOutsideClick
  • timer

If you want to change the color of the confirm button, you can by:

@if (Session::has('sweet_alert.alert'))
    <script>
        swal({
            text: '{!! Session::get('sweet_alert.text') !!}',
            title: '{!! Session::get('sweet_alert.title') !!}',
            timer: {!! Session::get('sweet_alert.timer') !!},
            type: '{!! Session::get('sweet_alert.type') !!}',
            showConfirmButton: '{!! Session::get('sweet_alert.showConfirmButton') !!}',
            confirmButtonText: '{!! Session::get('sweet_alert. confirmButtonText') !!}',
            confirmButtonColor: '#AEDEF4'
        });
    </script>
@endif

As you can see, the only property value that is not coming from the package is confirmButtonColor.
If we implement that, our facade will look like this:

Alert::message('Hello World')->persistent('Ok', '#AEDEF4');

I think that part of the color belongs to the frontend, otherwise i think it will be coupled and when you need to change a color you'll have to edit your controller.

Ok, but, what if i want a different color for my button based on the type of alert?

In that case you can do a check for the type:

@if (Session::has('sweet_alert.alert'))
    @if(Session::get('sweet_alert.type') == 'error')
        <script>
            swal({
                text: '{!! Session::get('sweet_alert.text') !!}',
                title: '{!! Session::get('sweet_alert.title') !!}',
                timer: {!! Session::get('sweet_alert.timer') !!},
                type: '{!! Session::get('sweet_alert.type') !!}',
                showConfirmButton: '{!! Session::get('sweet_alert.showConfirmButton') !!}',
                confirmButtonText: '{!! Session::get('sweet_alert. confirmButtonText') !!}',
                confirmButtonColor: 'a red hex color'
            });
        </script>
    @endif

    @if(Session::get('sweet_alert.type') == 'success')
        <script>
            swal({
                text: '{!! Session::get('sweet_alert.text') !!}',
                title: '{!! Session::get('sweet_alert.title') !!}',
                timer: {!! Session::get('sweet_alert.timer') !!},
                type: '{!! Session::get('sweet_alert.type') !!}',
                showConfirmButton: '{!! Session::get('sweet_alert.showConfirmButton') !!}',
                confirmButtonText: '{!! Session::get('sweet_alert. confirmButtonText') !!}',
                confirmButtonColor: 'a green hex color'
            });
        </script>
    @endif
@endif

This way you can have a different button colors for the type of alert or other custom check you want to do.

If you need different kinds of alerts with colors, you can create a partial for each one and include them in the main sweet alert template:

@if (Session::has('sweet_alert.alert'))
    @if(Session::get('sweet_alert.type') == 'error')
        @include('partials.alerts.error')
    @endif

    @if(Session::get('sweet_alert.type') == 'success')
        @include('partials.alerts.success')
    @endif
@endif

This way you can have any customizable alerts.

Hope this helps you!.

I would like to know what you think about it!

Thank you so much again.

from sweet-alert.

jrean avatar jrean commented on August 26, 2024

Awesome! Smart!
I totally agree with you to not add the color option available trough the Facade or the helper. It would become coupled as you mentioned.

Nothing more, your answer and what you provided as code sample is just awesome!

I'll try to submit a PR tomorow for the documentation to include some details I think could be useful.

Thank you :)

from sweet-alert.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.