mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-05-04 08:50:24 +00:00
Σ 2️⃣ Footer calculation v0.2 - add frontend GUI
This commit is contained in:
parent
baae4abdc4
commit
a33f7a8056
46 changed files with 2478 additions and 1033 deletions
web-frontend/modules/database
|
@ -152,6 +152,12 @@ import {
|
|||
BaserowFormulaSpecialType,
|
||||
BaserowFormulaTextType,
|
||||
} from '@baserow/modules/database/formula/formulaTypes'
|
||||
import {
|
||||
EmptyCountViewAggregationType,
|
||||
NotEmptyCountViewAggregationType,
|
||||
EmptyPercentageViewAggregationType,
|
||||
NotEmptyPercentageViewAggregationType,
|
||||
} from '@baserow/modules/database/viewAggregationTypes'
|
||||
|
||||
import en from '@baserow/modules/database/locales/en.json'
|
||||
import fr from '@baserow/modules/database/locales/fr.json'
|
||||
|
@ -365,5 +371,22 @@ export default (context) => {
|
|||
app.$registry.register('preview', new PDFBrowserFilePreview(context))
|
||||
app.$registry.register('preview', new GoogleDocFilePreview(context))
|
||||
|
||||
app.$registry.register(
|
||||
'viewAggregation',
|
||||
new EmptyCountViewAggregationType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewAggregation',
|
||||
new NotEmptyCountViewAggregationType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewAggregation',
|
||||
new EmptyPercentageViewAggregationType(context)
|
||||
)
|
||||
app.$registry.register(
|
||||
'viewAggregation',
|
||||
new NotEmptyPercentageViewAggregationType(context)
|
||||
)
|
||||
|
||||
registerRealtimeEvents(app.$realtime)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue