-
Notifications
You must be signed in to change notification settings - Fork 14.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
188 additions
and
217 deletions.
There are no files selected for viewing
73 changes: 0 additions & 73 deletions
73
superset-frontend/src/components/AnchorLink/AnchorLink.test.jsx
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
69 changes: 69 additions & 0 deletions
69
superset-frontend/src/dashboard/components/AnchorLink/AnchorLink.test.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
/** | ||
* 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. | ||
*/ | ||
import React from 'react'; | ||
import { render, act } from 'spec/helpers/testing-library'; | ||
import AnchorLink from 'src/dashboard/components/AnchorLink'; | ||
|
||
describe('AnchorLink', () => { | ||
const props = { | ||
id: 'CHART-123', | ||
dashboardId: 10, | ||
}; | ||
|
||
const globalLocation = window.location; | ||
afterEach(() => { | ||
window.location = globalLocation; | ||
}); | ||
|
||
it('should scroll the AnchorLink into view upon mount if id matches hash', async () => { | ||
const callback = jest.fn(); | ||
jest.spyOn(document, 'getElementById').mockReturnValue({ | ||
scrollIntoView: callback, | ||
} as unknown as HTMLElement); | ||
|
||
window.location.hash = props.id; | ||
await act(async () => { | ||
render(<AnchorLink {...props} />, { useRedux: true }); | ||
}); | ||
expect(callback).toHaveBeenCalledTimes(1); | ||
|
||
window.location.hash = 'random'; | ||
await act(async () => { | ||
render(<AnchorLink {...props} />, { useRedux: true }); | ||
}); | ||
expect(callback).toHaveBeenCalledTimes(1); | ||
}); | ||
|
||
it('should render anchor link without short link button', () => { | ||
const { container, queryByRole } = render( | ||
<AnchorLink showShortLinkButton={false} {...props} />, | ||
{ useRedux: true }, | ||
); | ||
expect(container.querySelector(`#${props.id}`)).toBeInTheDocument(); | ||
expect(queryByRole('button')).toBe(null); | ||
}); | ||
|
||
it('should render short link button', () => { | ||
const { getByRole } = render( | ||
<AnchorLink {...props} showShortLinkButton />, | ||
{ useRedux: true }, | ||
); | ||
expect(getByRole('button')).toBeInTheDocument(); | ||
}); | ||
}); |
78 changes: 78 additions & 0 deletions
78
superset-frontend/src/dashboard/components/AnchorLink/index.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
/** | ||
* 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. | ||
*/ | ||
import React, { useEffect } from 'react'; | ||
import { t } from '@superset-ui/core'; | ||
|
||
import URLShortLinkButton, { | ||
URLShortLinkButtonProps, | ||
} from 'src/dashboard/components/URLShortLinkButton'; | ||
import getLocationHash from 'src/dashboard/util/getLocationHash'; | ||
|
||
export type AnchorLinkProps = { | ||
id: string; | ||
scrollIntoView?: boolean; | ||
showShortLinkButton?: boolean; | ||
} & Pick<URLShortLinkButtonProps, 'dashboardId' | 'placement'>; | ||
|
||
export default function AnchorLink({ | ||
id, | ||
dashboardId, | ||
placement = 'right', | ||
scrollIntoView = false, | ||
showShortLinkButton = true, | ||
}: AnchorLinkProps) { | ||
const scrollAnchorIntoView = (elementId: string) => { | ||
const element = document.getElementById(elementId); | ||
if (element) { | ||
element.scrollIntoView({ | ||
block: 'center', | ||
behavior: 'smooth', | ||
}); | ||
} | ||
}; | ||
|
||
// will always scroll element into view if element id and url hash match | ||
const hash = getLocationHash(); | ||
useEffect(() => { | ||
if (hash && id === hash) { | ||
scrollAnchorIntoView(id); | ||
} | ||
}, [hash, id]); | ||
|
||
// force scroll into view | ||
useEffect(() => { | ||
if (scrollIntoView) { | ||
scrollAnchorIntoView(id); | ||
} | ||
}, [id, scrollIntoView]); | ||
|
||
return ( | ||
<span className="anchor-link-container" id={id}> | ||
{showShortLinkButton && dashboardId && ( | ||
<URLShortLinkButton | ||
anchorLinkId={id} | ||
dashboardId={dashboardId} | ||
emailSubject={t('Superset chart')} | ||
emailContent={t('Check out this chart in dashboard:')} | ||
placement={placement} | ||
/> | ||
)} | ||
</span> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.