Files
sqlpage--sqlpage/examples/official-site/sqlpage/migrations/70_pagination.sql
T
wehub-resource-sync d718c5a372
CI / compile_and_lint (push) Failing after 0s
CI / docker_build (linux/amd64, -linux-amd64-duckdb, duckdb) (push) Failing after 0s
CI / docker_build (linux/arm64, -linux-arm64, minimal) (push) Failing after 2s
CI / docker_build (linux/arm64, -linux-arm64-duckdb, duckdb) (push) Failing after 1s
CI / docker_build (linux/amd64, minimal) (push) Failing after 1s
CI / test (, sqlite, sqlite::memory:) (push) Has been skipped
CI / test (mssql, mssql, mssql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (mysql, mysql, mysql://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / test (oracle, oracle, Driver=Oracle 21 ODBC driver;Dbq=//127.0.0.1:1521/FREEPDB1;Uid=root;Pwd=Password123!) (push) Has been skipped
CI / test (postgres, odbc, Driver=PostgreSQL Unicode;Server=127.0.0.1;Port=5432;Database=sqlpage;UID=root;PWD=Password123!, true) (push) Has been skipped
CI / test (postgres, postgres, postgres://root:Password123!@127.0.0.1/sqlpage) (push) Has been skipped
CI / playwright (push) Has been skipped
CI / docker_build (linux/arm/v7, -linux-arm-v7, minimal) (push) Failing after 0s
CI / hurl_examples (push) Failing after 8s
deploy website / deploy_official_site (push) Failing after 1s
CI / hurl (${{ matrix.example }}) (push) Has been skipped
CI / docker_push (duckdb) (push) Has been cancelled
CI / docker_push (minimal) (push) Has been cancelled
CI / windows_test (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:57 +08:00

252 lines
9.5 KiB
SQL

INSERT INTO component(name, icon, description, introduced_in_version) VALUES
('pagination', 'sailboat-2', '
Navigation links to go to the first, previous, next, or last page of a dataset.
Useful when data is divided into pages, each containing a fixed number of rows.
This component only handles the display of pagination.
**Your sql queries are responsible for filtering data** based on the page number passed as a URL parameter.
This component is typically used in conjunction with a [table](?component=table),
[list](?component=list), or [card](?component=card) component.
The pagination component displays navigation buttons (first, previous, next, last) customizable with text or icons.
For large numbers of pages, an offset can limit the visible page links.
A minimal example of a SQL query that uses the pagination would be:
```sql
select ''table'' as component;
select * from my_table limit 100 offset $offset;
select ''pagination'' as component;
with recursive pages as (
select 0 as offset
union all
select offset + 100 from pages
where offset + 100 < (select count(*) from my_table)
)
select
(offset/100+1) as contents,
sqlpage.link(sqlpage.path(), json_object(''offset'', offset)) as link,
offset = coalesce(cast($offset as integer), 0) as active
from pages;
```
For more advanced usage, the [pagination guide](blog.sql?post=How+to+use+the+pagination+component) provides a complete tutorial.
', '0.40.0');
INSERT INTO parameter(component, name, description, type, top_level, optional) SELECT 'pagination', * FROM (VALUES
-- Top-level parameters
('first_link','A target URL to which the user should be directed to get to the first page. If none, the link is not displayed.','URL',TRUE,TRUE),
('previous_link','A target URL to which the user should be directed to get to the previous page. If none, the link is not displayed.','URL',TRUE,TRUE),
('next_link','A target URL to which the user should be directed to get to the next page. If none, the link is not displayed.','URL',TRUE,TRUE),
('last_link','A target URL to which the user should be directed to get to the last page. If none, the link is not displayed.','URL',TRUE,TRUE),
('first_title','The text displayed on the button to go to the first page.','TEXT',TRUE,TRUE),
('previous_title','The text displayed on the button to go to the previous page.','TEXT',TRUE,TRUE),
('next_title','The text displayed on the button to go to the next page.','TEXT',TRUE,TRUE),
('last_title','The text displayed on the button to go to the last page.','TEXT',TRUE,TRUE),
('first_disabled','disables the button to go to the first page.','BOOLEAN',TRUE,TRUE),
('previous_disabled','disables the button to go to the previous page.','BOOLEAN',TRUE,TRUE),
('next_disabled','Disables the button to go to the next page.','BOOLEAN',TRUE,TRUE),
('last_disabled','disables the button to go to the last page.','BOOLEAN',TRUE,TRUE),
('outline','Whether to use outline version of the pagination.','BOOLEAN',TRUE,TRUE),
('circle','Whether to use circle version of the pagination.','BOOLEAN',TRUE,TRUE),
-- Item-level parameters (for each page)
('contents','Page number.','INTEGER',FALSE,FALSE),
('link','A target URL to which the user should be redirected to view the requested page of data.','URL',FALSE,TRUE),
('offset','Whether to use offset to show only a few pages at a time. Usefull if the count of pages is too large. Defaults to false','BOOLEAN',FALSE,TRUE),
('active','Whether the link is active or not. Defaults to false.','BOOLEAN',FALSE,TRUE)
) x;
-- Insert example(s) for the component
INSERT INTO example(component, description, properties)
VALUES (
'pagination',
'This is an extremely simple example of a pagination component that displays only the page numbers, with the first page being the current page.',
JSON(
'[
{
"component": "pagination"
},
{
"contents": 1,
"link": "?component=pagination&page=1",
"active": true
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
}
]'
)
),
(
'pagination',
'The ouline style adds a rectangular border to each navigation link.',
JSON(
'[
{
"component": "pagination",
"outline": true
},
{
"contents": 1,
"link": "?component=pagination&page=1",
"active": true
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
}
]'
)
),
(
'pagination',
'The circle style adds a circular border to each navigation link.',
JSON(
'[
{
"component": "pagination",
"circle": true
},
{
"contents": 1,
"link": "?component=pagination&page=1",
"active": true
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
}
]'
)
),
(
'pagination',
'The following example implements navigation links that can be enabled or disabled as needed. Since a navigation link does not appear if no link is assigned to it, you must always assign a link to display it as disabled.',
JSON(
'[
{
"component": "pagination",
"first_link": "?component=pagination",
"first_disabled": true,
"previous_link": "?component=pagination",
"previous_disabled": true,
"next_link": "#?page=2",
"last_link": "#?page=3"
},
{
"contents": 1,
"link": "?component=pagination&page=1",
"active": true
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
}
]'
)
),
(
'pagination',
'Instead of using icons, you can apply text to the navigation links.',
JSON(
'[
{
"component": "pagination",
"first_title": "First",
"last_title": "Last",
"previous_title": "Previous",
"next_title": "Next",
"first_link": "?component=pagination",
"first_disabled": true,
"previous_link": "?component=pagination",
"previous_disabled": true,
"next_link": "#?page=2",
"last_link": "#?page=3"
},
{
"contents": 1,
"link": "?component=pagination&page=1",
"active": true
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
}
]'
)
),
(
'pagination',
'If you have a large number of pages to display, you can use an offset to represent a group of pages.',
JSON(
'[
{
"component": "pagination",
"first_link": "#?page=1",
"previous_link": "#?page=3",
"next_link": "#?page=4",
"last_link": "#?page=99"
},
{
"contents": 1,
"link": "?component=pagination&page=1"
},
{
"contents": 2,
"link": "?component=pagination&page=2"
},
{
"contents": 3,
"link": "?component=pagination&page=3"
},
{
"contents": 4,
"link": "?component=pagination&page=4",
"active": true
},
{
"contents": 5,
"link": "?component=pagination&page=5"
},
{
"contents": 6,
"link": "?component=pagination&page=6"
},
{
"offset": true
},
{
"contents": 99,
"link": "?component=pagination&page=99"
},
]'
)
);