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

92 lines
2.4 KiB
React
Raw Normal View History

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'
import { getComponentProps } from '../../services/component_utils/component_utils'
2019-02-14 02:07:28 +00:00
import './with_subscription.scss'
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
)
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
}) => (WrappedComponent) => {
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 {
props: [
...props,
2019-07-05 07:02:14 +00:00
'refresh' // boolean saying to force-fetch data whenever created
],
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
})
}
}
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>
: <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