Commit ff8eb2be authored by Kevin Yumang's avatar Kevin Yumang

SERV-2286 - toastr changed to PNotify package. named Notification. WIP

parent f68674c6
......@@ -10,11 +10,10 @@
@section('Limitless::GlobalLogoDestinationUrl', 'https://google.de')
@section('Limitless::Javascript')
@Limitless::InitNotifications
<script src="{{ secure_url("/ceetrox/sidekick/resource/public/Elements/notification/notification.sample.js") }}" defer></script>
<script src="{{ secure_url("/ceetrox/sidekick/resource/public/Elements/notification/modal.sample.js") }}" defer></script>
@Limitless::InitNotifications
@stop
@section('Limitless::Stylesheet')
......
......@@ -2,7 +2,6 @@ class LimitlessNotification {
// returns instance.
set(title, msg, type, confirm = false, bar = false, pos = null, icon = null) {
setTimeout(function() {
if (!isModuleSet()) {
console.warn('Warning - pnotify.min.js is not loaded.');
return;
......@@ -11,7 +10,6 @@ class LimitlessNotification {
let options = setOption(title, msg, type, icon, bar, pos, confirm);
return new PNotify(options);
},1);
}
}
......
{{--<script>--}}
<script>
{{-- let limitlessNotifications = new LimitlessNotification();--}}
{{--let limitlessNotifications = new LimitlessNotification();--}}
{{-- limitlessNotifications.set('Test', "Testing", 'success');--}}
{{-- // Default Toasters--}}
{{--@if(isset($errors)) @foreach($errors->all() as $data) limitlessNotifications.set('', "{{ $data }}", 'error'); @endforeach @endif--}}
{{--@if(isset($infos)) @foreach($infos as $data) limitlessNotifications.set('', "{{ $data }}", 'info'); @endforeach @endif--}}
{{--@if(isset($warnings)) @foreach($warnings as $data) limitlessNotifications.set('', "{{ $data }}", 'warning'); @endforeach @endif--}}
{{--@if(isset($successes)) @foreach($successes as $data) limitlessNotifications.set('', "{{ $data }}", 'success'); @endforeach @endif--}}
{{--@if(isset($hiddens)) @foreach($hiddens as $data) console.log("{{ $data }}"); @endforeach @endif--}}
{{--@if(isset($error)) limitlessNotifications.set('', "{{ $error }}", 'error'); @endif--}}
{{--@if(isset($success))--}}
{{-- --}}{{-- Default Toasters --}}
{{-- @if(isset($errors)) @foreach($errors->all() as $data) limitlessNotifications.set('', "{{ $data }}", 'error'); @endforeach @endif--}}
{{-- @if(isset($infos)) @foreach($infos as $data) limitlessNotifications.set('', "{{ $data }}", 'info'); @endforeach @endif--}}
{{-- @if(isset($warnings)) @foreach($warnings as $data) limitlessNotifications.set('', "{{ $data }}", 'warning'); @endforeach @endif--}}
{{-- @if(isset($successes)) @foreach($successes as $data) limitlessNotifications.set('', "{{ $data }}", 'success'); @endforeach @endif--}}
{{-- @if(isset($hiddens)) @foreach($hiddens as $data) console.log("{{ $data }}"); @endforeach @endif--}}
{{-- @if(isset($error)) limitlessNotifications.set('', "{{ $error }}", 'error'); @endif--}}
{{-- @if(isset($success))--}}
{{-- let a = limitlessNotifications.set('', "{{ $success }}", 'warning');--}}
{{-- console.log('{{ $success }}');--}}
{{-- console.log(a);--}}
{{-- let a = limitlessNotifications.set('', "{{ $success }}", 'success');--}}
{{-- console.log('{{ $success }}');--}}
{{-- console.log(a);--}}
{{--@endif--}}
{{--@if(isset($warning)) limitlessNotifications.set('', "{{ $warning }}", 'warning'); @endif--}}
{{--@if(isset($info)) limitlessNotifications.set('', "{{ $info }}", 'info'); @endif--}}
{{--@if(isset($hidden)) console.log("{{ $hidden }}"); @endif--}}
{{-- @endif--}}
{{-- @if(isset($warning)) limitlessNotifications.set('', "{{ $warning }}", 'warning'); @endif--}}
{{-- @if(isset($info)) limitlessNotifications.set('', "{{ $info }}", 'info'); @endif--}}
{{-- @if(isset($hidden)) console.log("{{ $hidden }}"); @endif--}}
{{-- // Session Toasters--}}
{{--@if(Session::has('errors')) @foreach(Session::get('errors') as $data) limitlessNotifications.set('', "{{ $data }}", 'error'); @endforeach @endif--}}
{{--@if(Session::has('infos')) @foreach(Session::get('infos') as $data) limitlessNotifications.set('', "{{ $data }}", 'info'); @endforeach @endif--}}
{{--@if(Session::has('warnings')) @foreach(Session::get('warnings') as $data) limitlessNotifications.set('', "{{ $data }}", 'warning'); @endforeach @endif--}}
{{--@if(Session::has('successes')) @foreach(Session::get('successes') as $data) limitlessNotifications.set('', "{{ $data }}", 'success'); @endforeach @endif--}}
{{--@if(Session::has('hiddens')) @foreach(Session::get('hiddens') as $data) console.log("{{ $data }}"); @endforeach @endif--}}
{{--@if(Session::has('error')) limitlessNotifications.set('', "{{ Session::get('error') }}", 'error'); @endif--}}
{{--@if(Session::has('success')) limitlessNotifications.set('', "{{ Session::get('success') }}", 'success'); @endif--}}
{{--@if(Session::has('warning')) limitlessNotifications.set('', "{{ Session::get('warning') }}", 'warning'); @endif--}}
{{--@if(Session::has('info')) limitlessNotifications.set('', "{{ Session::get('info') }}", 'info'); @endif--}}
{{--@if(Session::has('hidden')) console.log("{{ Session::get('hidden') }}"); @endif--}}
{{-- --}}{{-- Session Toasters --}}
{{-- @if(Session::has('errors')) @foreach(Session::get('errors') as $data) limitlessNotifications.set('', "{{ $data }}", 'error'); @endforeach @endif--}}
{{-- @if(Session::has('infos')) @foreach(Session::get('infos') as $data) limitlessNotifications.set('', "{{ $data }}", 'info'); @endforeach @endif--}}
{{-- @if(Session::has('warnings')) @foreach(Session::get('warnings') as $data) limitlessNotifications.set('', "{{ $data }}", 'warning'); @endforeach @endif--}}
{{-- @if(Session::has('successes')) @foreach(Session::get('successes') as $data) limitlessNotifications.set('', "{{ $data }}", 'success'); @endforeach @endif--}}
{{-- @if(Session::has('hiddens')) @foreach(Session::get('hiddens') as $data) console.log("{{ $data }}"); @endforeach @endif--}}
{{-- @if(Session::has('error')) limitlessNotifications.set('', "{{ Session::get('error') }}", 'error'); @endif--}}
{{-- @if(Session::has('success')) limitlessNotifications.set('', "{{ Session::get('success') }}", 'success'); @endif--}}
{{-- @if(Session::has('warning')) limitlessNotifications.set('', "{{ Session::get('warning') }}", 'warning'); @endif--}}
{{-- @if(Session::has('info')) limitlessNotifications.set('', "{{ Session::get('info') }}", 'info'); @endif--}}
{{-- @if(Session::has('hidden')) console.log("{{ Session::get('hidden') }}"); @endif--}}
{{--</script>--}}
\ No newline at end of file
</script>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment