mirror of
https://github.com/lowdefy/lowdefy.git
synced 2025-03-31 15:20:32 +08:00
fix(docs): Split file hosting to separate concepts section.
This commit is contained in:
parent
3f06fcde4b
commit
f802a6ce35
@ -32,7 +32,7 @@ _ref:
|
||||
content: |
|
||||
Lowdefy runs as a single page web app (SPA). It is possible to extend the functionality of a Lowdefy app by loading custom code (HTML, CSS and JavaScript) into the HTML `head` and `body` to of the default `index.html` page.
|
||||
|
||||
The content loaded into the `head` and `body` tag can be any valid HTML, most often `script` tags are loaded to register a new [`JsAction`](/JsAction) or [`_js`](/_js) operator. However, third party code can also be imported, for example Google Analytics, Intercom, etc. Be sure to only load trusted code into your app, as this code will be able to execute JavaScript on all pages of your Lowdefy app, which could expose you app or data to security vulnerabilities.
|
||||
The content loaded into the `head` and `body` tag can be any valid HTML, most often `script` tags are loaded to register a new [`JsAction`](/JsAction) or [`_js`](/_js) operator. However, third party code can also be imported, for example Google Analytics, Intercom, etc. Be sure to only load trusted code into your app, as this code will be able to execute JavaScript on all pages of your Lowdefy app, which could expose you app or data to security vulnerabilities. Your own code can easily be hosted from the [Lowdefy public folder](/hosting-files).
|
||||
|
||||
> __Warning__: Lowdefy implements the [Ant design](https://ant.design/) UI component framework for app layout and most blocks, thus the default Ant Design CSS is loaded for all Lowdefy apps. Take caution not to unintentionally overwrite existing style settings and classes which can result in a degraded user experience.
|
||||
|
||||
@ -45,6 +45,8 @@ _ref:
|
||||
|
||||
> __Warning__: Code imported using `appendHead` or `appendBody` will be loaded, and can execute JavaScript on every page of your Lowdefy app.
|
||||
|
||||
#### Examples
|
||||
|
||||
###### Loading third party code snippet like Google Analytics:
|
||||
|
||||
To add [Google Analytics](/https://developers.google.com/analytics/devguides/collection/analyticsjs) to a Lowdefy app, the `lowdefy.yaml` can be setup with:
|
||||
@ -70,31 +72,6 @@ _ref:
|
||||
# ...
|
||||
```
|
||||
|
||||
## Hosting static files
|
||||
|
||||
A Lowdefy app provides a convenient method to host __public__ files under the `/public/*` app route. Add content to be hosted publicly by creating a folder named `public` in the root of a Lowdefy project folder, next to the `lowdefy.yaml` file. Place the public content in this folder to host this content with your app.
|
||||
|
||||
All content in this folder will be publicly accessible at `{{ APP_URL }}/public/{{ FILE_PATH_NAME }}`. For example, the logo at the top of this page is hosted at [`https://docs.lowdefy.com/public/logo-light-theme.png`](http://localhost:3000/public/logo-light-theme.png). Sub-folders inside the public folder are supported.
|
||||
|
||||
By default, the `public` folder of a Lowdefy app will serve some files which most apps need:
|
||||
- `apple-touch-icon.png`: A 180x180px png image file to be used as the apple PWA icon.
|
||||
- `icon-32.png`: A 32x32px png image file to be used as fallback favicon for some browsers.
|
||||
- `icon-512.png`: A 512x512px png image icon.
|
||||
- `icon.svg`: A svg image file which will be used as favicon if supported by browser.
|
||||
- `logo-dark-theme.png`: A ~250x72px png image used as the header image for [`PageHeaderMenu`](/PageHeaderMenu) and [`PageSiderMenu`](/PageSiderMenu) blocks on desktop when the block theme is set to `dark`.
|
||||
- `logo-light-theme.png`: A ~250x72px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on desktop when the block theme is set to `light`.
|
||||
- `logo-square-dark-theme.png`: A ~125x125px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on mobile when the block theme is set to `dark`.
|
||||
- `logo-square-light-theme.png`: A ~125x125px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on mobile when the block theme is set to `light`.
|
||||
- `manifest.webmanifest`: The app [web manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest).
|
||||
|
||||
Any of these files can be overwritten by replacing the file with a modified version. For example, to replace the logo inside the header of `PageSiderMenu` on all pages, add a ~250x72px logo inside the project folder at `/public/logo-light-theme.png`.
|
||||
|
||||
## Loading and registering a [`JsAction`](/JsAction)
|
||||
|
||||
In order for the Lowdefy app engine to execute a custom JavaScript [action](/events-and-actions), the JavaScript code for the action must be loaded onto the page and registered using the `registerJsAction` method available on the browser [`window`](https://developer.mozilla.org/en-US/docs/Web/API/window) object by calling `window.lowdefy.registerJsAction(name: string, action: function)`.
|
||||
|
||||
The `JsAction` allows the use of async functions.
|
||||
|
||||
###### Load, register and trigger a custom `JsAction` from code in the app `public` folder:
|
||||
|
||||
This example fetches a list of Todos from [{JSON}placeholder](https://jsonplaceholder.typicode.com/), and updates [state](/context-and-state).
|
||||
@ -153,6 +130,8 @@ _ref:
|
||||
|
||||
All `_js` functions must be synchronous.
|
||||
|
||||
#### Examples
|
||||
|
||||
###### Load, register and use a custom `_js` operator from code in the app `public` folder:
|
||||
|
||||
This example uses a `_js` operator to remove all duplicates from a list of names.
|
||||
|
50
packages/docs/concepts/hosting-files.yaml
Normal file
50
packages/docs/concepts/hosting-files.yaml
Normal file
@ -0,0 +1,50 @@
|
||||
# Copyright 2020-2021 Lowdefy, Inc
|
||||
|
||||
# Licensed under the Apache License, Version 2.0 (the "License");
|
||||
# you may not use this file except in compliance with the License.
|
||||
# You may obtain a copy of the License at
|
||||
|
||||
# http://www.apache.org/licenses/LICENSE-2.0
|
||||
|
||||
# Unless required by applicable law or agreed to in writing, software
|
||||
# distributed under the License is distributed on an "AS IS" BASIS,
|
||||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
# See the License for the specific language governing permissions and
|
||||
# limitations under the License.
|
||||
|
||||
_ref:
|
||||
path: templates/general.yaml.njk
|
||||
vars:
|
||||
pageId: hosting-files
|
||||
pageTitle: Hosting Files
|
||||
section: Concepts
|
||||
filePath: concepts/hosting-files.yaml
|
||||
content:
|
||||
- id: md1
|
||||
type: Markdown
|
||||
properties:
|
||||
content: |
|
||||
A Lowdefy app provides a convenient method to host __public__ files under the `/public/*` app route. Add content to be hosted publicly by creating a folder named `public` in the root of a Lowdefy project folder, next to the `lowdefy.yaml` file. Place the public content in this folder to host this content with your app.
|
||||
|
||||
All content in this folder will be publicly accessible at `{{ APP_URL }}/public/{{ FILE_PATH_NAME }}`. For example, the logo at the top of this page is hosted at [`https://docs.lowdefy.com/public/logo-light-theme.png`](http://localhost:3000/public/logo-light-theme.png). Sub-folders inside the public folder are supported.
|
||||
|
||||
By default, the `public` folder of a Lowdefy app will serve some files which most apps need:
|
||||
- `apple-touch-icon.png`: A 180x180px png image file to be used as the apple PWA icon.
|
||||
- `icon-32.png`: A 32x32px png image file to be used as fallback favicon for some browsers.
|
||||
- `icon-512.png`: A 512x512px png image icon.
|
||||
- `icon.svg`: A svg image file which will be used as favicon if supported by browser.
|
||||
- `logo-dark-theme.png`: A ~250x72px png image used as the header image for [`PageHeaderMenu`](/PageHeaderMenu) and [`PageSiderMenu`](/PageSiderMenu) blocks on desktop when the block theme is set to `dark`.
|
||||
- `logo-light-theme.png`: A ~250x72px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on desktop when the block theme is set to `light`.
|
||||
- `logo-square-dark-theme.png`: A ~125x125px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on mobile when the block theme is set to `dark`.
|
||||
- `logo-square-light-theme.png`: A ~125x125px png image used as the header image for `PageHeaderMenu` and `PageSiderMenu` blocks on mobile when the block theme is set to `light`.
|
||||
- `manifest.webmanifest`: The app [web manifest](https://developer.mozilla.org/en-US/docs/Web/Manifest).
|
||||
|
||||
Any of these files can be overwritten by replacing the file with a modified version. For example, to replace the logo inside the header of `PageSiderMenu` on all pages, add a ~250x72px logo inside the project folder at `/public/logo-light-theme.png`.
|
||||
|
||||
- _ref:
|
||||
path: templates/navigation_buttons.yaml
|
||||
vars:
|
||||
previous_page_title: Lists
|
||||
previous_page_id: lists
|
||||
next_page_title: Custom Code
|
||||
next_page_id: custom-code
|
@ -158,5 +158,5 @@ _ref:
|
||||
vars:
|
||||
previous_page_title: Deployment
|
||||
previous_page_id: deployment
|
||||
next_page_title: Custom Code
|
||||
next_page_id: custom-code
|
||||
next_page_title: Hosting Files
|
||||
next_page_id: hosting-files
|
||||
|
@ -113,6 +113,11 @@
|
||||
pageId: lists
|
||||
properties:
|
||||
title: Lists
|
||||
- id: hosting-files
|
||||
type: MenuLink
|
||||
pageId: hosting-files
|
||||
properties:
|
||||
title: Hosting Files
|
||||
- id: custom-code
|
||||
type: MenuLink
|
||||
pageId: custom-code
|
||||
|
@ -23,6 +23,7 @@
|
||||
- _ref: concepts/secrets.yaml
|
||||
- _ref: concepts/deployment.yaml
|
||||
- _ref: concepts/lists.yaml
|
||||
- _ref: concepts/hosting-files.yaml
|
||||
- _ref: concepts/custom-code.yaml
|
||||
- _ref: concepts/custom-blocks.yaml
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user