Files
superset2/docs/developer_portal/guides/webviews.md

62 lines
2.0 KiB
Markdown

---
title: WebViews and Embedded Content
sidebar_position: 3
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you 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.
-->
# WebViews and Embedded Content
🚧 **Coming Soon** 🚧
Explore how to embed external web content, iframes, and interactive applications within your Superset plugins.
## Topics to be covered:
- Creating secure WebView components
- iframe integration and sandboxing
- Cross-origin communication patterns
- Authentication and session management
- WebView lifecycle and memory management
- Event handling between parent and child
- Responsive WebView sizing
- Loading states and error handling
- Performance optimization for embedded content
- Security considerations and CSP compliance
## WebView Use Cases
- **External dashboards** - Embed third-party analytics tools
- **Interactive documentation** - Live code examples and tutorials
- **Configuration panels** - External admin interfaces
- **Data exploration tools** - Specialized analysis applications
- **Custom visualizations** - Complex D3.js or other web-based charts
## Security Features
- Content Security Policy (CSP) integration
- Cross-origin resource sharing (CORS) handling
- Secure message passing
- Domain allowlisting
---
*This documentation is under active development. Check back soon for updates!*