1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-04 05:05:24 +00:00

Resolve "Disable repeat formula function for now"

This commit is contained in:
Nigel Gott 2021-11-24 13:45:20 +00:00 committed by Bram Wiepjes
parent 51c4b568e7
commit a66653b9f1
26 changed files with 65 additions and 77 deletions

View file

@ -120,7 +120,7 @@ Created by Baserow B.V. - bram@baserow.io.
Distributes under the MIT license. See `LICENSE` for more information.
Version: 1.6.0
Version: 1.7.0
The official repository can be found at https://gitlab.com/bramw/baserow.

View file

@ -34,14 +34,14 @@ RUN pip3 install --no-warn-script-location -r /baserow/requirements/base.txt
COPY --chown=$UID:$GID ./docs /baserow/docs
COPY --chown=$UID:$GID ./backend /baserow/backend
COPY --chown=$UID:$GID ./premium/backend /baserow/backend/plugins/premium
COPY --chown=$UID:$GID ./premium/backend /baserow/premium/backend
WORKDIR /baserow/backend
# Ensure that Python outputs everything that's printed inside
# the application rather than buffering it.
ENV PYTHONUNBUFFERED 1
ENV PYTHONPATH $PYTHONPATH:/baserow/backend/src:/baserow/backend/plugins/premium/src
ENV PYTHONPATH $PYTHONPATH:/baserow/backend/src:/baserow/premium/backend/src
ENV DJANGO_SETTINGS_MODULE='baserow.config.settings.base'
RUN dos2unix /baserow/backend/docker/docker-entrypoint.sh && \

View file

@ -36,14 +36,14 @@ RUN pip3 install --no-warn-script-location -r /baserow/requirements/base.txt -r
COPY --chown=$UID:$GID ./docs /baserow/docs
COPY --chown=$UID:$GID ./backend /baserow/backend
COPY --chown=$UID:$GID ./premium/backend /baserow/backend/plugins/premium
COPY --chown=$UID:$GID ./premium/backend /baserow/premium/backend
WORKDIR /baserow/backend
# Ensure that Python outputs everything that's printed inside
# the application rather than buffering it.
ENV PYTHONUNBUFFERED 1
ENV PYTHONPATH $PYTHONPATH:/baserow/backend/src:/baserow/backend/plugins/premium/src
ENV PYTHONPATH $PYTHONPATH:/baserow/backend/src:/baserow/premium/backend/src
ENV DJANGO_SETTINGS_MODULE='baserow.config.settings.dev'
RUN dos2unix /baserow/backend/docker/docker-entrypoint.sh && \

View file

@ -6,7 +6,7 @@ from setuptools import find_packages, setup
PROJECT_DIR = os.path.dirname(__file__)
REQUIREMENTS_DIR = os.path.join(PROJECT_DIR, "requirements")
VERSION = "1.6.0"
VERSION = "1.7.0"
def get_requirements(env):

View file

@ -218,7 +218,7 @@ SPECTACULAR_SETTINGS = {
"name": "MIT",
"url": "https://gitlab.com/bramw/baserow/-/blob/master/LICENSE",
},
"VERSION": "1.6.0",
"VERSION": "1.7.0",
"SERVE_INCLUDE_SCHEMA": False,
"TAGS": [
{"name": "Settings"},

View file

@ -38,7 +38,6 @@ from django.db.models.functions import (
Least,
Left,
Right,
Repeat,
)
from baserow.contrib.database.fields.models import (
@ -109,7 +108,6 @@ def register_formula_functions(registry):
registry.register(BaserowRight())
registry.register(BaserowTrim())
registry.register(BaserowRegexReplace())
registry.register(BaserowRepeat())
# Number functions
registry.register(BaserowMultiply())
registry.register(BaserowDivide())
@ -1431,23 +1429,6 @@ class BaserowTrim(OneArgumentBaserowFunction):
raise BaserowToDjangoExpressionGenerationError()
class BaserowRepeat(TwoArgumentBaserowFunction):
type = "repeat"
arg1_type = [BaserowFormulaTextType]
arg2_type = [OnlyIntegerNumberTypes()]
def type_function(
self,
func_call: BaserowFunctionCall[UnTyped],
arg1: BaserowExpression[BaserowFormulaValidType],
arg2: BaserowExpression[BaserowFormulaNumberType],
) -> BaserowExpression[BaserowFormulaType]:
return func_call.with_valid_type(arg1.expression_type)
def to_django_expression(self, arg1: Expression, arg2: Expression) -> Expression:
return Repeat(arg1, arg2, output_field=fields.TextField())
class BaserowYear(OneArgumentBaserowFunction):
type = "year"
arg_type = [BaserowFormulaDateType]

View file

@ -1,6 +1,6 @@
# Changelog
## Unreleased
## Released (2021-11-24)
* Fixed a bug where the frontend would fail hard if a table with no views was accessed.
* Tables can now be opened in new browser tabs.

View file

@ -8,7 +8,7 @@
"contactEmail": "bram@baserow.io",
"icon": "file://logo.png",
"tags": ["no-code", "nocode", "database", "data", "collaborate", "airtable"],
"version": "1.6.0",
"version": "1.7.0",
"healthCheckPath": "/_health",
"httpPort": 80,
"addons": {

View file

@ -30,7 +30,7 @@ RUN (mkdir -p /app/code/cloudron/cloudron && \
touch /app/code/cloudron/cloudron/__init__.py)
ADD settings.py /app/code/cloudron/cloudron
ENV PYTHONPATH $PYTHONPATH:/app/code/baserow/backend/src:/app/code/cloudron
ENV PYTHONPATH $PYTHONPATH:/app/code/baserow/backend/src:/app/code/baserow/premium/backend/src:/app/code/cloudron
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV TMPDIR=/run/temp

View file

@ -1,11 +1,11 @@
**Build**
```
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.6.0 .
$ docker build -t registry.gitlab.com/bramw/baserow/cloudron:1.7.0 .
```
**Push**
```
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.6.0
$ docker push registry.gitlab.com/bramw/baserow/cloudron:1.7.0
```

View file

@ -15,9 +15,6 @@ echo "==> Executing database migrations"
echo "==> Syncing templates"
/app/code/env/bin/python /app/code/baserow/backend/src/baserow/manage.py sync_templates --settings=cloudron.settings
echo "==> Updating formulas"
/app/code/env/bin/python /app/code/baserow/backend/src/baserow/manage.py update_formulas --settings=cloudron.settings
chown -R cloudron:cloudron /app/data
echo "==> Starting"

View file

@ -18,7 +18,7 @@ services:
image: baserow_backend_dev:latest
volumes:
- ./backend:/baserow/backend
- ./premium/backend/:/baserow/backend/plugins/premium
- ./premium/backend/:/baserow/premium/backend
- /baserow/backend/plugins
# Open stdin and tty so when attaching key input works as expected.
stdin_open: true
@ -37,7 +37,7 @@ services:
command: celery-dev worker -l INFO -Q celery
volumes:
- ./backend:/baserow/backend
- ./premium/backend/:/baserow/backend/plugins/premium
- ./premium/backend/:/baserow/premium/backend
- /baserow/backend/plugins
# Open stdin and tty so when attaching key input works as expected.
stdin_open: true
@ -56,7 +56,7 @@ services:
command: celery-dev worker -l INFO -Q export
volumes:
- ./backend:/baserow/backend
- ./premium/backend/:/baserow/backend/plugins/premium
- ./premium/backend/:/baserow/premium/backend
- /baserow/backend/plugins
# Open stdin and tty so when attaching key input works as expected.
stdin_open: true
@ -75,7 +75,7 @@ services:
command: celery-dev beat -l INFO -S redbeat.RedBeatScheduler
volumes:
- ./backend:/baserow/backend
- ./premium/backend/:/baserow/backend/plugins/premium
- ./premium/backend/:/baserow/premium/backend
- /baserow/backend/plugins
# Open stdin and tty so when attaching key input works as expected.
stdin_open: true
@ -96,7 +96,7 @@ services:
# Override the above mounts for node_modules so we use the node_modules built
# directly into the image instead of whatever is on your local filesystem.
- /baserow/web-frontend/node_modules
- ./premium/web-frontend/:/baserow/web-frontend/plugins/premium
- ./premium/web-frontend/:/baserow/premium/web-frontend
# Dont copy the plugins folder back to the repo as the premium should never be
# committed into the web-frontend/ root folder.
- /baserow/web-frontend/plugins

View file

@ -42,7 +42,7 @@ $ cd baserow/deploy/cloudron
After that you can install the Baserow Cloudron app by executing the following commands.
```
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.6.0
$ cloudron install -l baserow.{YOUR_DOMAIN} --image registry.gitlab.com/bramw/baserow/cloudron:1.7.0
App is being installed.
...
App is installed.
@ -67,7 +67,7 @@ First you need to figure out what your app id is. You can do so by executing the
the latest version.
```
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.6.0
cloudron update --app {YOUR_APP_ID} --image registry.gitlab.com/bramw/baserow/cloudron:1.7.0
```
> Note that you must replace the image with the most recent image of Baserow. The

View file

@ -129,6 +129,8 @@ $ source env/bin/activate
# Install backend dependencies through pip
$ pip3 install -e ./baserow/backend
# Install the premium plugin
$ pip3 install -e ./baserow/premium/backend
# Deactivate the virtual environment
$ deactivate
@ -216,9 +218,6 @@ $ baserow migrate
# Sync the template files with the database
$ baserow sync_templates
# Ensure formulas are updated to the latest version
$ baserow update_formulas
$ deactivate
```
@ -373,12 +372,12 @@ $ git pull
$ cd /baserow
$ source env/bin/activate
$ pip3 install -e ./baserow/backend
$ pip3 install -e ./baserow/premium/backend
$ export DJANGO_SETTINGS_MODULE='baserow.config.settings.base'
$ export DATABASE_PASSWORD='yourpassword'
$ export DATABASE_HOST='localhost'
$ baserow migrate
$ baserow sync_templates
$ baserow update_formulas
$ deactivate
$ cd baserow/web-frontend
$ yarn install
@ -395,12 +394,12 @@ $ cd /baserow
$ git pull
$ source backend/env/bin/activate
$ pip3 install -e ./backend
$ pip3 install -e ./premium/backend
$ export DJANGO_SETTINGS_MODULE='baserow.config.settings.base'
$ export DATABASE_PASSWORD='yourpassword'
$ export DATABASE_HOST='localhost'
$ baserow migrate
$ baserow sync_templates
$ baserow update_formulas
$ deactivate
$ cd web-frontend
$ yarn install

View file

@ -63,7 +63,6 @@ Django backend development server by executing the following commands.
$ docker exec -it my-baserow-plugin-backend bash
$ baserow migrate
$ baserow sync_templates
$ baserow update_formulas
$ baserow runserver 0.0.0.0:8000
```

View file

@ -37,7 +37,7 @@ RUN (mkdir -p /baserow/heroku/heroku && \
touch /baserow/heroku/heroku/__init__.py)
ADD deploy/heroku/settings.py /baserow/heroku/heroku
ENV PYTHONPATH $PYTHONPATH:/baserow/baserow/backend/src:/baserow/heroku
ENV PYTHONPATH $PYTHONPATH:/baserow/baserow/backend/src:/baserow/baserow/premium/backend/src:/baserow/heroku
ENV LC_ALL=C.UTF-8
ENV LANG=C.UTF-8
ENV TMPDIR=/run/temp

View file

@ -4,6 +4,6 @@ build:
release:
image: web
command:
- /baserow/env/bin/python /baserow/baserow/backend/src/baserow/manage.py migrate --settings=heroku.settings && /baserow/env/bin/python /baserow/baserow/backend/src/baserow/manage.py sync_templates --settings=heroku.settings && /baserow/env/bin/python /baserow/baserow/backend/src/baserow/manage.py update_formulas --settings=heroku.settings
- /baserow/env/bin/python /baserow/baserow/backend/src/baserow/manage.py migrate --settings=heroku.settings && /baserow/env/bin/python /baserow/baserow/backend/src/baserow/manage.py sync_templates --settings=heroku.settings
run:
web: . /baserow/entry.sh && /usr/bin/supervisord --configuration /etc/supervisor/conf.d/supervisor.conf

View file

@ -0,0 +1,34 @@
// Please keep in sync with the non premium eslintrc.js
module.exports = {
root: true,
env: {
browser: true,
node: true,
jest: true,
// required as jest uses jasmine's fail method
// https://stackoverflow.com/questions/64413927/jest-eslint-fail-is-not-defined
jasmine: true,
},
parserOptions: {
parser: 'babel-eslint',
},
extends: [
'@nuxtjs',
'plugin:nuxt/recommended',
'plugin:prettier/recommended',
'prettier',
],
plugins: ['prettier'],
rules: {
'no-console': 0,
'vue/no-mutating-props': 0,
'prettier/prettier': [
'error',
{
singleQuote: true,
semi: false,
},
],
'import/order': 'off',
},
}

View file

@ -1,3 +1,4 @@
// Please keep in sync with the premium eslintrc.js
module.exports = {
root: true,
env: {

View file

@ -36,7 +36,7 @@ WORKDIR /baserow/web-frontend
RUN yarn install
COPY --chown=$UID:$GID ./web-frontend /baserow/web-frontend/
COPY --chown=$UID:$GID ./premium/web-frontend /baserow/web-frontend/plugins/premium
COPY --chown=$UID:$GID ./premium/web-frontend /baserow/premium/web-frontend/
RUN yarn run build-local

View file

@ -9,8 +9,9 @@ export default function (base = '@') {
const baseModules = [
base + '/modules/core/module.js',
base + '/modules/database/module.js',
base + '/plugins/premium/modules/baserow_premium/module.js',
base + '/../premium/web-frontend/modules/baserow_premium/module.js',
]
const modules = baseModules.concat(additionalModules)
return {
modules,

View file

@ -35,7 +35,7 @@ WORKDIR /baserow/web-frontend
RUN yarn install
COPY --chown=$UID:$GID ./web-frontend /baserow/web-frontend/
COPY --chown=$UID:$GID ./premium/web-frontend /baserow/web-frontend/plugins/premium
COPY --chown=$UID:$GID ./premium/web-frontend /baserow/premium/web-frontend/
RUN dos2unix /baserow/web-frontend/docker/docker-entrypoint.sh && \
chmod a+x /baserow/web-frontend/docker/docker-entrypoint.sh

View file

@ -1049,27 +1049,6 @@ export class BaserowRegexReplace extends BaserowFunctionDefinition {
}
}
export class BaserowRepeat extends BaserowFunctionDefinition {
static getType() {
return 'repeat'
}
getDescription() {
return 'Repeats the first input the number of times specified by the second input'
}
getSyntaxUsage() {
return ['repeat(text, number)']
}
getExamples() {
return ['repeat("a", 3) = "aaa"']
}
getFormulaType() {
return 'text'
}
}
export class BaserowGreatest extends BaserowFunctionDefinition {
static getType() {
return 'greatest'

View file

@ -118,7 +118,6 @@ import {
BaserowMonth,
BaserowLeast,
BaserowGreatest,
BaserowRepeat,
BaserowRegexReplace,
BaserowTrim,
BaserowRight,
@ -283,7 +282,6 @@ export default (context) => {
app.$registry.register('formula_function', new BaserowRight(context))
app.$registry.register('formula_function', new BaserowTrim(context))
app.$registry.register('formula_function', new BaserowRegexReplace(context))
app.$registry.register('formula_function', new BaserowRepeat(context))
app.$registry.register('formula_function', new BaserowGreatest(context))
app.$registry.register('formula_function', new BaserowLeast(context))
app.$registry.register('formula_function', new BaserowMonth(context))

View file

@ -1,6 +1,6 @@
{
"name": "baserow",
"version": "1.6.0",
"version": "1.7.0",
"private": true,
"description": "Baserow: open source no-code database web frontend.",
"author": "Bram Wiepjes (Baserow)",

View file

@ -25,7 +25,6 @@ describe('Formula Functions Test', () => {
'right',
'trim',
'regex_replace',
'repeat',
'multiply',
'divide',
'tonumber',