2021-04-25 10:40:08 +00:00
|
|
|
// eslint-disable-next-line no-unused
|
|
|
|
import { h } from 'vue'
|
2019-02-14 02:07:28 +00:00
|
|
|
import isEmpty from 'lodash/isEmpty'
|
2019-02-25 09:18:41 +00:00
|
|
|
import { getComponentProps } from '../../services/component_utils/component_utils'
|
2019-02-14 02:07:28 +00:00
|
|
|
import './with_subscription.scss'
|
|
|
|
|
2020-10-20 19:13:19 +00:00
|
|
|
import { FontAwesomeIcon as FAIcon } from '@fortawesome/vue-fontawesome'
|
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import {
|
|
|
|
faCircleNotch
|
|
|
|
} from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faCircleNotch
|
|
|
|
)
|
|
|
|
|
2019-02-14 04:25:21 +00:00
|
|
|
const withSubscription = ({
|
2019-07-05 07:02:14 +00:00
|
|
|
fetch, // function to fetch entries and return a promise
|
|
|
|
select, // function to select data from store
|
|
|
|
childPropName = 'content', // name of the prop to be passed into the wrapped component
|
|
|
|
additionalPropNames = [] // additional prop name list of the wrapper component
|
2019-02-14 04:25:21 +00:00
|
|
|
}) => (WrappedComponent) => {
|
2019-02-25 09:18:41 +00:00
|
|
|
const originalProps = Object.keys(getComponentProps(WrappedComponent))
|
2019-02-26 20:26:59 +00:00
|
|
|
const props = originalProps.filter(v => v !== childPropName).concat(additionalPropNames)
|
2019-02-14 02:07:28 +00:00
|
|
|
|
2021-04-25 09:50:17 +00:00
|
|
|
return {
|
2019-02-14 08:12:52 +00:00
|
|
|
props: [
|
|
|
|
...props,
|
2019-07-05 07:02:14 +00:00
|
|
|
'refresh' // boolean saying to force-fetch data whenever created
|
2019-02-14 08:12:52 +00:00
|
|
|
],
|
2019-02-14 02:07:28 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
loading: false,
|
|
|
|
error: false
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
fetchedData () {
|
|
|
|
return select(this.$props, this.$store)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
created () {
|
2019-02-14 02:21:56 +00:00
|
|
|
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
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2019-07-05 07:02:14 +00:00
|
|
|
},
|
2021-04-25 10:40:08 +00:00
|
|
|
render () {
|
2019-07-05 07:02:14 +00:00
|
|
|
if (!this.error && !this.loading) {
|
|
|
|
const props = {
|
2022-03-18 11:36:08 +00:00
|
|
|
...this.$props,
|
|
|
|
[childPropName]: this.fetchedData
|
2019-07-05 07:02:14 +00:00
|
|
|
}
|
2022-03-18 11:36:08 +00:00
|
|
|
const children = this.$slots
|
2019-07-05 07:02:14 +00:00
|
|
|
return (
|
|
|
|
<div class="with-subscription">
|
|
|
|
<WrappedComponent {...props}>
|
|
|
|
{children}
|
|
|
|
</WrappedComponent>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
return (
|
|
|
|
<div class="with-subscription-loading">
|
|
|
|
{this.error
|
|
|
|
? <a onClick={this.fetchData} class="alert error">{this.$t('general.generic_error')}</a>
|
2020-10-20 19:13:19 +00:00
|
|
|
: <FAIcon spin icon="circle-notch"/>
|
2019-07-05 07:02:14 +00:00
|
|
|
}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
2019-02-14 02:07:28 +00:00
|
|
|
}
|
2021-04-25 09:50:17 +00:00
|
|
|
}
|
2019-02-14 02:07:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default withSubscription
|