2022-01-21 20:36:25 -05:00
|
|
|
// We import the CSS which is extracted to its own file by esbuild.
|
|
|
|
// Remove this line if you add a your own CSS build pipeline (e.g postcss).
|
2022-01-23 00:02:25 -05:00
|
|
|
import '../css/app.scss'
|
2021-03-11 21:12:55 -05:00
|
|
|
|
2022-01-21 20:36:25 -05:00
|
|
|
// If you want to use Phoenix channels, run `mix help phx.gen.channel`
|
|
|
|
// to get started and then uncomment the line below.
|
|
|
|
// import "./user_socket.js"
|
|
|
|
|
|
|
|
// You can include dependencies in two ways.
|
|
|
|
//
|
|
|
|
// The simplest option is to put them in assets/vendor and
|
|
|
|
// import them using relative paths:
|
|
|
|
//
|
|
|
|
// import "../vendor/some-package.js"
|
2021-03-11 21:12:55 -05:00
|
|
|
//
|
2022-01-21 20:36:25 -05:00
|
|
|
// Alternatively, you can `npm install some-package --prefix assets` and import
|
|
|
|
// them using a path starting with the package name:
|
2021-03-11 21:12:55 -05:00
|
|
|
//
|
2022-01-21 20:36:25 -05:00
|
|
|
// import "some-package"
|
2021-03-11 21:12:55 -05:00
|
|
|
//
|
2022-01-21 20:36:25 -05:00
|
|
|
|
|
|
|
// Include phoenix_html to handle method=PUT/DELETE in forms and buttons.
|
2022-01-23 00:02:25 -05:00
|
|
|
import 'phoenix_html'
|
2022-01-21 20:36:25 -05:00
|
|
|
// Establish Phoenix Socket and LiveView configuration.
|
2022-01-23 00:02:25 -05:00
|
|
|
import { Socket } from 'phoenix'
|
|
|
|
import { LiveSocket } from 'phoenix_live_view'
|
2023-01-25 21:17:45 -05:00
|
|
|
import topbar from 'topbar'
|
2022-01-23 00:02:08 -05:00
|
|
|
import MaintainAttrs from './maintain_attrs'
|
2022-11-09 21:04:57 -05:00
|
|
|
import ShotLogChart from './shot_log_chart'
|
2023-03-18 21:36:30 -04:00
|
|
|
import Date from './date'
|
|
|
|
import DateTime from './datetime'
|
2021-09-12 18:55:03 -04:00
|
|
|
|
2022-01-23 00:02:25 -05:00
|
|
|
const csrfToken = document.querySelector("meta[name='csrf-token']").getAttribute('content')
|
|
|
|
const liveSocket = new LiveSocket('/live', Socket, {
|
2022-01-23 00:02:08 -05:00
|
|
|
params: { _csrf_token: csrfToken },
|
2023-03-18 21:36:30 -04:00
|
|
|
hooks: { Date, DateTime, MaintainAttrs, ShotLogChart }
|
2022-01-23 00:02:08 -05:00
|
|
|
})
|
2021-03-11 21:12:55 -05:00
|
|
|
|
|
|
|
// Show progress bar on live navigation and form submits
|
2022-01-23 00:02:25 -05:00
|
|
|
topbar.config({ barColors: { 0: '#29d' }, shadowColor: 'rgba(0, 0, 0, .3)' })
|
|
|
|
window.addEventListener('phx:page-loading-start', info => topbar.show())
|
|
|
|
window.addEventListener('phx:page-loading-stop', info => topbar.hide())
|
2023-01-22 23:16:36 -05:00
|
|
|
window.addEventListener('submit', info => topbar.show())
|
|
|
|
window.addEventListener('beforeunload', info => topbar.show())
|
2021-03-11 21:12:55 -05:00
|
|
|
|
|
|
|
// connect if there are any LiveViews on the page
|
|
|
|
liveSocket.connect()
|
|
|
|
|
|
|
|
// expose liveSocket on window for web console debug logs and latency simulation:
|
|
|
|
// >> liveSocket.enableDebug()
|
|
|
|
// >> liveSocket.enableLatencySim(1000) // enabled for duration of browser session
|
|
|
|
// >> liveSocket.disableLatencySim()
|
|
|
|
window.liveSocket = liveSocket
|
2022-02-15 19:50:48 -05:00
|
|
|
|
|
|
|
// Copy to clipboard
|
|
|
|
window.addEventListener('cannery:clipcopy', (event) => {
|
|
|
|
if ('clipboard' in navigator) {
|
|
|
|
const text = event.target.textContent
|
|
|
|
navigator.clipboard.writeText(text)
|
|
|
|
} else {
|
|
|
|
window.alert('Sorry, your browser does not support clipboard copy.')
|
|
|
|
}
|
|
|
|
})
|
2022-11-10 22:01:32 -05:00
|
|
|
|
|
|
|
// Set input value to 0
|
|
|
|
window.addEventListener('cannery:set-zero', (event) => {
|
|
|
|
event.target.value = 0
|
|
|
|
})
|