1
0
Fork 0
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:
Jrmi 2022-02-23 14:44:52 +00:00
parent baae4abdc4
commit a33f7a8056
46 changed files with 2478 additions and 1033 deletions
web-frontend/modules/database

View file

@ -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)
}