-
-
Notifications
You must be signed in to change notification settings - Fork 25
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
Implement rudimentary redirect banner #155
Open
FlaminSarge
wants to merge
2
commits into
LiveTL:master
Choose a base branch
from
FlaminSarge:redirect
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+197
−15
Open
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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,88 @@ | ||
<script lang="ts"> | ||
import { slide, fade } from 'svelte/transition'; | ||
import MessageRun from './MessageRuns.svelte'; | ||
import Tooltip from './common/Tooltip.svelte'; | ||
import Icon from 'smelte/src/components/Icon'; | ||
import { Theme } from '../ts/chat-constants'; | ||
import { createEventDispatcher } from 'svelte'; | ||
import { showProfileIcons } from '../ts/storage'; | ||
import Button from 'smelte/src/components/Button'; | ||
|
||
export let redirect: Ytc.ParsedRedirect; | ||
|
||
let dismissed = false; | ||
let shorten = false; | ||
let autoHideTimeout: NodeJS.Timeout | null = null; | ||
const classes = 'rounded inline-flex flex-col overflow-visible ' + | ||
'bg-secondary-900 p-2 w-full text-white z-10 shadow'; | ||
|
||
const onShorten = () => { | ||
shorten = !shorten; | ||
if (autoHideTimeout) { | ||
clearTimeout(autoHideTimeout); | ||
autoHideTimeout = null; | ||
} | ||
}; | ||
|
||
$: if (redirect) { | ||
dismissed = false; | ||
shorten = false; | ||
if (redirect.showtime) { | ||
autoHideTimeout = setTimeout(() => { shorten = true; }, redirect.showtime); | ||
} | ||
} | ||
|
||
const dispatch = createEventDispatcher(); | ||
$: dismissed, shorten, dispatch('resize'); | ||
</script> | ||
|
||
{#if !dismissed} | ||
<div | ||
class={classes} | ||
transition:fade={{ duration: 250 }} | ||
> | ||
<div class="flex flex-row items-center cursor-pointer" on:click={onShorten}> | ||
<div class="font-medium tracking-wide text-white flex-1"> | ||
<span class="mr-1 inline-block" style="transform: translateY(3px);"> | ||
<Icon small> | ||
{#if shorten} | ||
expand_more | ||
{:else} | ||
expand_less | ||
{/if} | ||
</Icon> | ||
</span> | ||
<span class="align-middle">Redirect Notice</span> | ||
</div> | ||
<div class="flex-none self-end" style="transform: translateY(3px);"> | ||
<Tooltip offsetY={0} small> | ||
<Icon | ||
slot="activator" | ||
class="cursor-pointer text-lg" | ||
on:click={() => { dismissed = true; }} | ||
> | ||
close | ||
</Icon> | ||
Dismiss | ||
</Tooltip> | ||
</div> | ||
</div> | ||
{#if !shorten && !dismissed} | ||
<div class="mt-1 whitespace-pre-line" transition:slide|local={{ duration: 300 }}> | ||
{#if $showProfileIcons} | ||
<img | ||
class="h-5 w-5 inline align-middle rounded-full flex-none" | ||
src={redirect.item.profileIcon.src} | ||
alt={redirect.item.profileIcon.alt} | ||
/> | ||
{/if} | ||
<MessageRun runs={redirect.item.message} forceDark forceTLColor={Theme.DARK}/> | ||
</div> | ||
<div class="mt-1 whitespace-pre-line" transition:slide|local={{ duration: 300 }}> | ||
<Button href={redirect.item.action.url} target="_blank" small> | ||
<MessageRun runs={redirect.item.action.text} forceDark forceTLColor={Theme.DARK}/> | ||
</Button> | ||
</div> | ||
{/if} | ||
</div> | ||
{/if} |
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This handling should probably be cleaned up at some point.