Add logic for serving front-end from /app

This commit is contained in:
2020-11-04 20:47:58 -06:00
parent 9390f5b920
commit 31ff08e6d0
80 changed files with 64 additions and 12 deletions

9
frontend/lib/README.md Normal file
View File

@@ -0,0 +1,9 @@
The files in this directory are external libraries used in this project.
- Vue.js
- A front-end framework. Used under the terms of the MIT license.
- https://github.com/vuejs/vue
- VuES6.js
- A kind-of crappy loader for defining Vue components using ES6 classes.
- Also used under the terms of the MIT license.
- https://code.garrettmills.dev/garrettmills/vues6

11966
frontend/lib/vue-2.6.11.js Normal file

File diff suppressed because it is too large Load Diff

72
frontend/lib/vues6.js Normal file
View File

@@ -0,0 +1,72 @@
import {uuid_v4} from '../src/module/util.js'
export default class VuES6Loader {
constructor(component_list) {
this.components = component_list
}
load() {
for ( const ComponentClass of Object.values(this.components) ) {
const method_properties = Object.getOwnPropertyNames(ComponentClass.prototype)
const watch = {}
method_properties.filter(x => x.startsWith('watch_')).some(method_name => {
const field_name = method_name.substr(6)
const handler = function(...args) {
return ComponentClass.prototype[method_name].bind(this)(...args)
}
watch[field_name] = handler
})
const methods = {}
method_properties.filter(x => !x.startsWith('watch_')).some(method_name => {
const handler = function(...args) {
return ComponentClass.prototype[method_name].bind(this)(...args)
}
methods[method_name] = handler
})
const ref_x_inst = {}
Vue.component(ComponentClass.selector, {
props: ComponentClass.props,
data: () => {
const uuid = uuid_v4();
const inst = new ComponentClass();
ref_x_inst[uuid] = inst;
inst.$_uuid = uuid;
return inst;
},
watch,
methods,
template: ComponentClass.template,
created: function() {
this.$_data_inst = ref_x_inst[this.$data.$_uuid];
this.$_data_inst.$_vue_inst = this;
if ( typeof this.vue_on_create === 'function' ) this.vue_on_create()
},
updated: function() {
if ( typeof this.vue_on_update === 'function' ) this.vue_on_update()
},
mounted: function() {
if ( typeof this.vue_on_mount === 'function' ) this.vue_on_mount()
},
destroyed: function() {
if ( typeof this.vue_on_destroy === 'function' ) this.vue_on_destroy()
},
})
}
}
}
export class Component {
static get selector() { return '' }
static get template() { return '' }
static get props() { return [] }
vue_on_create() {}
vue_on_update() {}
vue_on_mount() {}
vue_on_destroy() {}
}