Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
S
sidekick
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Privat - Marco Schmiedel
sidekick
Commits
ff8eb2be
Commit
ff8eb2be
authored
Aug 05, 2022
by
Kevin Yumang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SERV-2286 - toastr changed to PNotify package. named Notification. WIP
parent
f68674c6
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
37 additions
and
42 deletions
+37
-42
Master.blade.php
src/Views/Limitless/Help/Layout/Master.blade.php
+2
-3
notification.init.js
...s/Limitless/Notification/Attachments/notification.init.js
+6
-8
Init.blade.php
src/Views/Limitless/Notification/Init.blade.php
+29
-31
No files found.
src/Views/Limitless/Help/Layout/Master.blade.php
View file @
ff8eb2be
...
...
@@ -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'
)
...
...
src/Views/Limitless/Notification/Attachments/notification.init.js
View file @
ff8eb2be
...
...
@@ -2,16 +2,14 @@ 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
;
}
if
(
!
isModuleSet
())
{
console
.
warn
(
'
Warning - pnotify.min.js is not loaded.
'
);
return
;
}
let
options
=
setOption
(
title
,
msg
,
type
,
icon
,
bar
,
pos
,
confirm
);
let
options
=
setOption
(
title
,
msg
,
type
,
icon
,
bar
,
pos
,
confirm
);
return
new
PNotify
(
options
);
},
1
);
return
new
PNotify
(
options
);
}
}
...
...
src/Views/Limitless/Notification/Init.blade.php
View file @
ff8eb2be
{{
--<
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>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment