akkoma-fe/src/hocs/with_subscription/with_subscription.js

67 lines
1.8 KiB
JavaScript
Raw Normal View History

2019-02-14 02:07:28 +00:00
import Vue from 'vue'
import reject from 'lodash/reject'
2019-02-14 02:07:28 +00:00
import isEmpty from 'lodash/isEmpty'
import omit from 'lodash/omit'
2019-02-14 02:07:28 +00:00
import './with_subscription.scss'
const withSubscription = ({ fetch, select, contentPropName = 'content' }) => (WrapperComponent) => {
const originalProps = WrapperComponent.props || []
const props = reject(originalProps, v => v === 'content')
2019-02-14 02:07:28 +00:00
return Vue.component('withSubscription', {
render (createElement) {
const props = {
props: {
...omit(this.$props, 'refresh'),
2019-02-14 02:07:28 +00:00
[contentPropName]: this.fetchedData
},
on: this.$listeners
}
return (
<div class="with-subscription">
{!this.error && !this.loading && <WrapperComponent {...props} />}
2019-02-14 02:07:28 +00:00
<div class="with-subscription-footer">
{this.error && <a onClick={this.fetchData} class="alert error">{this.$t('general.generic_error')}</a>}
{!this.error && this.loading && <i class="icon-spin3 animate-spin"/>}
</div>
</div>
)
},
props: [...props, 'refresh'],
2019-02-14 02:07:28 +00:00
data () {
return {
loading: false,
error: false
}
},
computed: {
fetchedData () {
return select(this.$props, this.$store)
}
},
created () {
if (this.refresh || isEmpty(this.fetchedData)) {
2019-02-14 02:07:28 +00:00
this.fetchData()
}
},
methods: {
fetchData () {
if (!this.loading) {
this.loading = true
this.error = false
fetch(this.$props, this.$store)
.then(() => {
this.loading = false
})
.catch(() => {
this.error = true
this.loading = false
})
}
}
}
})
}
export default withSubscription