Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: fix missing default component theme block in functional component doc pages #1920

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
31 changes: 31 additions & 0 deletions packages/__docs__/functionalComponentThemes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
/*
* The MIT License (MIT)
*
* Copyright (c) 2015 - present Instructure, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

const themes = {
// TODO figure out subcomponents e.g.: Table.Cell
avatar: async (theme) =>
(await import('@instructure/ui-avatar/src/Avatar/theme.ts')).default(theme)
}

export default themes
35 changes: 25 additions & 10 deletions packages/__docs__/src/Document/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ import { SourceCodeEditor } from '@instructure/ui-source-code-editor'
import { withStyle, jsx } from '@instructure/emotion'

import generateStyle from './styles'
import functionalComponentThemes from '../../functionalComponentThemes'

import { Description } from '../Description'
import { Properties } from '../Properties'
Expand All @@ -59,14 +60,34 @@ class Document extends Component<DocumentProps, DocumentState> {

state: DocumentState = {
selectedDetailsTabIndex: 0,
pageRef: null
pageRef: null,
componentTheme: {}
}

ref: HTMLDivElement | null = null

componentDidMount() {
this.props.makeStyles?.()
this.setState({ pageRef: this.ref })
this.fetchGenerateComponentTheme()
}

fetchGenerateComponentTheme = async () => {
const { doc, themeVariables } = this.props
const generateComponentTheme =
doc?.componentInstance?.generateComponentTheme
if (
generateComponentTheme &&
typeof generateComponentTheme === 'function' &&
themeVariables
) {
this.setState({ componentTheme: generateComponentTheme(themeVariables) })
} else {
const componentTheme = await functionalComponentThemes[
doc.id.toLowerCase()
](themeVariables)
this.setState({ componentTheme })
}
}

componentDidUpdate() {
Expand Down Expand Up @@ -96,17 +117,11 @@ class Document extends Component<DocumentProps, DocumentState> {

renderTheme(doc: DocDataType) {
const { themeVariables } = this.props
const generateComponentTheme =
doc?.componentInstance?.generateComponentTheme

const componentTheme =
themeVariables &&
typeof generateComponentTheme === 'function' &&
generateComponentTheme(themeVariables)
const { componentTheme } = this.state

const themeVariableKeys = Object.keys(componentTheme)
const themeVariableKeys = componentTheme && Object.keys(componentTheme)

return componentTheme && themeVariableKeys.length > 0 ? (
return themeVariables && componentTheme && themeVariableKeys.length > 0 ? (
<View margin="x-large 0" display="block">
<Heading level="h2" as="h3" id={`${doc.id}Theme`} margin="0 0 small 0">
Default Theme Variables
Expand Down
4 changes: 3 additions & 1 deletion packages/__docs__/src/Document/props.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ import PropTypes from 'prop-types'
import type { ComponentStyle, WithStyleProps } from '@instructure/emotion'
import type {
PropValidators,
BaseThemeVariables
BaseThemeVariables,
ComponentTheme
} from '@instructure/shared-types'
import { DocData } from '../App/props'

Expand Down Expand Up @@ -72,6 +73,7 @@ type DocumentStyle = ComponentStyle<'githubCornerOctoArm' | 'githubCorner'>
type DocumentState = {
selectedDetailsTabIndex: number
pageRef: HTMLDivElement | null
componentTheme: ComponentTheme
}

const allowedProps: AllowedPropKeys = [
Expand Down
Loading