Skip to content

Commit 8532982

Browse files
tcbegleyglsdownAnnMarieW
committed
Bootstrap 5 support (#646)
* Alert * Badge * Button * ButtonGroup * Carousel * Collapse * Fade * Add shim for html components that don't have class_name defined yet * Update block button docs * Update docs for Bootstrap 5 * RIP Jumbotron * Add react-bootstrap beta * Layout * Docs fix * Label * Clean up example * Monkeypatch doc tests * New components - Offcanvas and pagination (#643) * Added offcanvas components * Offcanvas doc snippets * Added offcanvas documentation * Fixed long text issue * Added react-bootstrap * Added offcanvas * Added offcanvas tests * Added js tests for offcanvas * Addition of new pagination component * Combined offcanvas into single component * Formatting * ABetter handling of pagination component * Updated pagination docs * Removed invalid code * Updated npm demo to Bootstrap 5 * Updated pagination docs to include R and jl * Updated pagination tests * Fixed callbacks * Reverted to 5.0.2 to avoid issues with offcanvas backdrop until resolved * Fixed offcanvas tests * Tidy up * Progress * Format tests * Spinner * Table * Toast * New component Accordion (#645) * Accordion component and js test * Added documentation for accordion * R and Julia examples * Fixed h2 formatting issues * Added accordion folder for flake8 * Update demo/Demo.js Co-authored-by: glsdown <52132406+glsdown@users.noreply.github.com> Co-authored-by: Tom Begley <tomcbegley@gmail.com> * flake8 config * List group updated to Bootstrap 5 (#647) * Updated list-group component * Updated list-group docs * Bug fixes * Tabs * Form * Form updates + examples * Checklist / RadioItems * Select * themes * BS5 updates for docs * Fix doc tests * InputGroup * Fix JS tests * Checkbox/Radio * format js * Modal * Modal docs * Fix format command * Card, Nav and Navbar (#648) * Monkeypatch doc tests * Card * Nav and NavBar Update to Collapse to remove navbar prop * fixed Card.test.js for Card body test * updated docs for Navbar example. Also updated julia and R snippets * updates to Navbar and Collapse after review * updated index for deleted NavbarCollapse * lint and black Co-authored-by: tcbegley <tomcbegley@gmail.com> * DropdownMenu * NavbarToggler * Tooltip+Popover * Consistent imports * Fix accordion tests * Initial breadcrumb component * Set accordion to first component * Format code * Update Breadcrumb * Snippet test fixes for breadcrumb * Popover - minor prop updates (#652) * Use size prop consistently Co-authored-by: glsdown <52132406+glsdown@users.noreply.github.com> Co-authored-by: AnnMarieW <72614349+AnnMarieW@users.noreply.github.com>
1 parent d3be037 commit 8532982

File tree

360 files changed

+6044
-5379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

360 files changed

+6044
-5379
lines changed

R/themes.R

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
.prependBootswatch <- function(suffix) {
2-
BOOTSWATCH_BASE <- "https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/"
2+
BOOTSWATCH_BASE <- "https://cdn.jsdelivr.net/npm/bootswatch@5.1.0/dist/"
33
return(paste(BOOTSWATCH_BASE, suffix, sep=""))
44
}
55

66
#' @export'
77
dbcThemes <- list(
8-
BOOTSTRAP = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css",
9-
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap-grid.min.css",
8+
BOOTSTRAP = "https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css",
9+
GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap-grid.min.css",
1010
CERULEAN = .prependBootswatch("cerulean/bootstrap.min.css"),
1111
COSMO = .prependBootswatch("cosmo/bootstrap.min.css"),
1212
CYBORG = .prependBootswatch("cyborg/bootstrap.min.css"),
@@ -18,7 +18,9 @@ dbcThemes <- list(
1818
LUX = .prependBootswatch("lux/bootstrap.min.css"),
1919
MATERIA = .prependBootswatch("materia/bootstrap.min.css"),
2020
MINTY = .prependBootswatch("minty/bootstrap.min.css"),
21+
MORPH = .prependBootswatch("morph/bootstrap.min.css"),
2122
PULSE = .prependBootswatch("pulse/bootstrap.min.css"),
23+
QUARTZ = .prependBootswatch("quartz/bootstrap.min.css"),
2224
SANDSTONE = .prependBootswatch("sandstone/bootstrap.min.css"),
2325
SIMPLEX = .prependBootswatch("simplex/bootstrap.min.css"),
2426
SKETCHY = .prependBootswatch("sketchy/bootstrap.min.css"),
@@ -27,5 +29,7 @@ dbcThemes <- list(
2729
SPACELAB = .prependBootswatch("spacelab/bootstrap.min.css"),
2830
SUPERHERO = .prependBootswatch("superhero/bootstrap.min.css"),
2931
UNITED = .prependBootswatch("united/bootstrap.min.css"),
30-
YETI = .prependBootswatch("yeti/bootstrap.min.css")
32+
VAPOR = .prependBootswatch("vapor/bootstrap.min.css"),
33+
YETI = .prependBootswatch("yeti/bootstrap.min.css"),
34+
ZEPHYR = .prependBootswatch("zephyr/bootstrap.min.css")
3135
)

dash_bootstrap_components/themes.py

+7-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
BOOTSTRAP = (
2-
"https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css"
2+
"https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap.min.css"
33
)
44

5-
GRID = "https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap-grid.min.css" # noqa
5+
GRID = "https://cdn.jsdelivr.net/npm/bootstrap@5.1.0/dist/css/bootstrap-grid.min.css" # noqa
66

7-
_BOOTSWATCH_BASE = "https://stackpath.bootstrapcdn.com/bootswatch/4.5.2/"
7+
_BOOTSWATCH_BASE = "https://cdn.jsdelivr.net/npm/bootswatch@5.1.0/dist/"
88

99
CERULEAN = _BOOTSWATCH_BASE + "cerulean/bootstrap.min.css"
1010
COSMO = _BOOTSWATCH_BASE + "cosmo/bootstrap.min.css"
@@ -17,7 +17,9 @@
1717
LUX = _BOOTSWATCH_BASE + "lux/bootstrap.min.css"
1818
MATERIA = _BOOTSWATCH_BASE + "materia/bootstrap.min.css"
1919
MINTY = _BOOTSWATCH_BASE + "minty/bootstrap.min.css"
20+
MORPH = _BOOTSWATCH_BASE + "morph/bootstrap.min.css"
2021
PULSE = _BOOTSWATCH_BASE + "pulse/bootstrap.min.css"
22+
QUARTZ = _BOOTSWATCH_BASE + "quartz/bootstrap.min.css"
2123
SANDSTONE = _BOOTSWATCH_BASE + "sandstone/bootstrap.min.css"
2224
SIMPLEX = _BOOTSWATCH_BASE + "simplex/bootstrap.min.css"
2325
SKETCHY = _BOOTSWATCH_BASE + "sketchy/bootstrap.min.css"
@@ -26,4 +28,6 @@
2628
SPACELAB = _BOOTSWATCH_BASE + "spacelab/bootstrap.min.css"
2729
SUPERHERO = _BOOTSWATCH_BASE + "superhero/bootstrap.min.css"
2830
UNITED = _BOOTSWATCH_BASE + "united/bootstrap.min.css"
31+
VAPOR = _BOOTSWATCH_BASE + "vapor/bootstrap.min.css"
2932
YETI = _BOOTSWATCH_BASE + "yeti/bootstrap.min.css"
33+
ZEPHYR = _BOOTSWATCH_BASE + "zephyr/bootstrap.min.css"

demo/Demo.js

+16-16
Original file line numberDiff line numberDiff line change
@@ -202,8 +202,8 @@ const Demo = () => (
202202
<Card color="dark" outline={true}>
203203
<CardHeader>Header</CardHeader>
204204
<CardBody>
205-
<h5 class_name="card-title">This card has a header</h5>
206-
<p class_name="card-text">And some text in the body</p>
205+
<h5 className="card-title">This card has a header</h5>
206+
<p className="card-text">And some text in the body</p>
207207
</CardBody>
208208
<CardFooter>Footer</CardFooter>
209209
</Card>
@@ -215,25 +215,25 @@ const Demo = () => (
215215
src="https://images.pexels.com/photos/457882/pexels-photo-457882.jpeg?auto=compress&cs=tinysrgb&dpr=2&h=350"
216216
/>
217217
<CardBody>
218-
<h5 class_name="card-title">Card with image</h5>
219-
<p class_name="card-text">This card has an image</p>
218+
<h5 className="card-title">Card with image</h5>
219+
<p className="card-text">This card has an image</p>
220220
</CardBody>
221221
</Card>
222222
</Col>
223223
<Col md={3}>
224224
<Card>
225225
<CardBody>
226-
<h5 class_name="card-title">Here's another card</h5>
227-
<p class_name="card-text">With some text, and a button</p>
226+
<h5 className="card-title">Here's another card</h5>
227+
<p className="card-text">With some text, and a button</p>
228228
<Button color="success">Click here</Button>
229229
</CardBody>
230230
</Card>
231231
</Col>
232232
<Col md={3}>
233233
<Card>
234234
<CardBody>
235-
<h5 class_name="card-title">Here's yet another card</h5>
236-
<p class_name="card-text">With some text, and some links</p>
235+
<h5 className="card-title">Here's yet another card</h5>
236+
<p className="card-text">With some text, and some links</p>
237237
<CardLink href="https://www.asidatascience.com">
238238
External
239239
</CardLink>
@@ -247,17 +247,17 @@ const Demo = () => (
247247
<CardDeck>
248248
<Card>
249249
<CardBody>
250-
<h5 class_name="card-title">The first card</h5>
251-
<p class_name="card-text">
250+
<h5 className="card-title">The first card</h5>
251+
<p className="card-text">
252252
This is a card with some text on it, it's the first one in the
253253
deck.
254254
</p>
255255
</CardBody>
256256
</Card>
257257
<Card>
258258
<CardBody>
259-
<h5 class_name="card-title">The second card</h5>
260-
<p class_name="card-text">
259+
<h5 className="card-title">The second card</h5>
260+
<p className="card-text">
261261
This is a card with some text on it, it's the second one in the
262262
deck. It has a bit more text in it so that we can see how the
263263
vertical spacing will work.
@@ -266,9 +266,9 @@ const Demo = () => (
266266
</Card>
267267
<Card outline={true} color="primary">
268268
<CardBody>
269-
<h5 class_name="card-title">The third card</h5>
270-
<h6 class_name="card-subtitle">...and the last :(</h6>
271-
<p class_name="card-text">This card doesn't have much text...</p>
269+
<h5 className="card-title">The third card</h5>
270+
<h6 className="card-subtitle">...and the last :(</h6>
271+
<p className="card-text">This card doesn't have much text...</p>
272272
<Button color="danger">Click me</Button>
273273
</CardBody>
274274
</Card>
@@ -365,7 +365,7 @@ const Demo = () => (
365365
<FadeComponent>
366366
<Card>
367367
<CardBody>
368-
<p class_name="card-text">This content fades in and out</p>
368+
<p className="card-text">This content fades in and out</p>
369369
</CardBody>
370370
</Card>
371371
</FadeComponent>

demo/index.html

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1" />
77
<link
88
rel="stylesheet"
9-
href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css"
10-
integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2"
9+
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"
1110
crossorigin="anonymous"
1211
/>
1312
</head>

docs/components_page/__init__.py

+43-4
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,46 @@
33

44
import dash
55
import dash_bootstrap_components as dbc
6+
import dash_core_components as dcc
67
import dash_html_components as html
78
from jinja2 import Environment, FileSystemLoader
89

9-
from .components.table.simple import table_body, table_header
10-
from .components.tabs.simple import tab1_content, tab2_content
11-
from .markdown_parser import parse
10+
11+
# TODO: delete once Dash 2.0 is released
12+
def class_name_shim(fn):
13+
def new_init(self, *args, **kwargs):
14+
kwargs["className"] = kwargs.get("class_name", kwargs.get("className"))
15+
return fn(
16+
self,
17+
*args,
18+
**{k: v for k, v in kwargs.items() if k != "class_name"},
19+
)
20+
21+
return new_init
22+
23+
24+
for component in [
25+
dcc.Markdown,
26+
html.A,
27+
html.Blockquote,
28+
html.Div,
29+
html.H1,
30+
html.H2,
31+
html.H3,
32+
html.H4,
33+
html.H5,
34+
html.H6,
35+
html.Hr,
36+
html.I,
37+
html.P,
38+
html.Small,
39+
]:
40+
component.__init__ = class_name_shim(component.__init__)
41+
42+
43+
from .components.table.simple import table_body, table_header # noqa
44+
from .components.tabs.simple import tab1_content, tab2_content # noqa
45+
from .markdown_parser import parse # noqa
1246

1347
SERVE_LOCALLY = os.getenv("DBC_DOCS_MODE", "production") == "dev"
1448

@@ -59,8 +93,10 @@ def _get_label(slug):
5993

6094
def register_apps():
6195
component_bodies = {
96+
"accordion": {"markdown_path": COMPONENTS / "accordion.md"},
6297
"alert": {"markdown_path": COMPONENTS / "alert.md"},
6398
"badge": {"markdown_path": COMPONENTS / "badge.md"},
99+
"breadcrumb": {"markdown_path": COMPONENTS / "breadcrumb.md"},
64100
"button": {"markdown_path": COMPONENTS / "button.md"},
65101
"button_group": {"markdown_path": COMPONENTS / "button_group.md"},
66102
"card": {"markdown_path": COMPONENTS / "card.md"},
@@ -71,7 +107,6 @@ def register_apps():
71107
"form": {"markdown_path": COMPONENTS / "form.md"},
72108
"input": {"markdown_path": COMPONENTS / "input.md"},
73109
"input_group": {"markdown_path": COMPONENTS / "input_group.md"},
74-
"jumbotron": {"markdown_path": COMPONENTS / "jumbotron.md"},
75110
"layout": {"markdown_path": COMPONENTS / "layout.md"},
76111
"list_group": {"markdown_path": COMPONENTS / "list_group.md"},
77112
"modal": {
@@ -80,6 +115,10 @@ def register_apps():
80115
},
81116
"nav": {"markdown_path": COMPONENTS / "nav.md"},
82117
"navbar": {"markdown_path": COMPONENTS / "navbar.md"},
118+
"offcanvas": {
119+
"markdown_path": COMPONENTS / "offcanvas.md",
120+
},
121+
"pagination": {"markdown_path": COMPONENTS / "pagination.md"},
83122
"popover": {"markdown_path": COMPONENTS / "popover.md"},
84123
"progress": {"markdown_path": COMPONENTS / "progress.md"},
85124
"spinner": {"markdown_path": COMPONENTS / "spinner.md"},

docs/components_page/components/__tests__/helpers.py

+8-3
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ def py_source_to_app(py_source, env):
88
Create a Dash app from a string defining the app.
99
"""
1010
env = env or {}
11-
exec(py_source, env)
11+
# TODO: remove class_name modifiers
12+
exec(py_source.replace("class_name", "className"), env)
1213
return env["app"]
1314

1415

@@ -56,12 +57,16 @@ def load_r_app(path, component_name):
5657
snippet=path.read_text(),
5758
components=component_name,
5859
port=8050,
59-
)
60+
).replace(
61+
"class_name", "className"
62+
) # TODO: remove this in future
6063

6164

6265
def load_jl_app(path, component_name):
6366
return JL_WRAPPER.format(
6467
snippet=path.read_text(),
6568
components=component_name,
6669
port=8050,
67-
)
70+
).replace(
71+
"class_name", "className"
72+
) # TODO: remove this in future
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
"""
2+
Testing of callbacks in non-Python Accordion snippets.
3+
"""
4+
from pathlib import Path
5+
6+
import dash.testing.wait as wait
7+
8+
from .helpers import load_jl_app, load_r_app
9+
10+
HERE = Path(__file__).parent
11+
12+
13+
def test_r_simple(dashr):
14+
r_app = load_r_app((HERE.parent / "accordion" / "simple.R"), "accordion")
15+
dashr.start_server(r_app)
16+
check_simple_callbacks(dashr)
17+
18+
19+
def test_jl_simple(dashjl):
20+
jl_app = load_jl_app(
21+
(HERE.parent / "accordion" / "simple.jl"), "accordion"
22+
)
23+
with open("app.jl", "w") as f:
24+
f.write(jl_app)
25+
dashjl.start_server(jl_app)
26+
check_simple_callbacks(dashjl)
27+
28+
29+
def check_simple_callbacks(runner):
30+
# Find the accordion object
31+
accordion_comp = runner.find_element("#accordion")
32+
accordion_text = runner.find_element("#accordion-contents")
33+
34+
# Check it has 3 accordion-items in it
35+
items = accordion_comp.find_elements_by_class_name("accordion-item")
36+
wait.until(
37+
lambda: len(items) == 3,
38+
timeout=4,
39+
)
40+
41+
# Click the third section
42+
items[2].find_element_by_class_name("accordion-button").click()
43+
44+
# Check the text in contents changes to "Item selected: item-3"
45+
wait.until(
46+
lambda: accordion_text.text == "Item selected: item-3",
47+
timeout=4,
48+
)
49+
50+
# Check that the right section is showing
51+
item = accordion_comp.find_element_by_class_name("show")
52+
wait.until(
53+
lambda: item.text == "This is the content of the third section",
54+
timeout=4,
55+
)

0 commit comments

Comments
 (0)