mirror of
https://github.com/PhotonVision/photonvision
synced 2026-06-21 01:01:41 +00:00
* Rework settings page; touch up contour, output, and 3D tabs; font sizing No stream placeholder; driver mode refined; cameras page Make settings snackbar work Lint fix Fix settings page padding Actually hide settings fields if unsupported * Make toggle buttons less confusing; fix driver toggle; form validation * Make eyedropper work and make input/select styling more consistent * Fix color picker and tabbing bugs * Set up camera and settings pages to talk to the backend * Add auto reconnect * Add lots of tooltips and improve related thematic consistency * Only show output stream while color picking * Unbreak robot offset * Increase tooltip delay and refactor tooltip label into a component * Remove toggle button switching behavior * Fix PnP tab and add a flag to disable FOV configuration * Move FPS indicator * Make GPU acceleration status use one value in the store * Only allow IPv4 static IPs and remove accidentally committed index
40 lines
963 B
JavaScript
40 lines
963 B
JavaScript
import Vue from 'vue'
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import store from './store/index'
|
|
import vuetify from './plugins/vuetify';
|
|
import msgPack from 'msgpack5';
|
|
import axios from 'axios';
|
|
import VueAxios from "vue-axios";
|
|
|
|
Vue.config.productionTip = false;
|
|
|
|
if (process.env.NODE_ENV === "production") {
|
|
Vue.prototype.$address = location.host;
|
|
} else if (process.env.NODE_ENV === "development") {
|
|
Vue.prototype.$address = location.hostname + ":5800";
|
|
}
|
|
|
|
const wsURL = '//' + Vue.prototype.$address + '/websocket';
|
|
|
|
import VueNativeSock from 'vue-native-websocket';
|
|
|
|
Vue.use(VueNativeSock, wsURL, {
|
|
reconnection: true,
|
|
connectManually: true,
|
|
format: "arraybuffer",
|
|
});
|
|
Vue.use(VueAxios, axios);
|
|
Vue.prototype.$msgPack = msgPack(true);
|
|
|
|
import {dataHandleMixin} from './mixins/global/dataHandleMixin'
|
|
|
|
Vue.mixin(dataHandleMixin);
|
|
|
|
new Vue({
|
|
router,
|
|
store,
|
|
vuetify,
|
|
render: h => h(App)
|
|
}).$mount('#app');
|