This repository has been archived by the owner on Jul 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 218
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
9 changed files
with
544 additions
and
1 deletion.
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
102 changes: 102 additions & 0 deletions
102
app/src/common/shared/org/mozilla/vrbrowser/ui/widgets/dialogs/WhatsNewWidget.java
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,102 @@ | ||
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 4; indent-tabs-mode: nil; -*- | ||
* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
package org.mozilla.vrbrowser.ui.widgets.dialogs; | ||
|
||
import android.annotation.SuppressLint; | ||
import android.content.Context; | ||
import android.util.AttributeSet; | ||
import android.view.LayoutInflater; | ||
|
||
import androidx.databinding.DataBindingUtil; | ||
|
||
import org.mozilla.geckoview.GeckoSessionSettings; | ||
import org.mozilla.vrbrowser.R; | ||
import org.mozilla.vrbrowser.VRBrowserApplication; | ||
import org.mozilla.vrbrowser.browser.Accounts; | ||
import org.mozilla.vrbrowser.browser.SettingsStore; | ||
import org.mozilla.vrbrowser.browser.engine.SessionStore; | ||
import org.mozilla.vrbrowser.databinding.WhatsNewBinding; | ||
import org.mozilla.vrbrowser.ui.widgets.WidgetManagerDelegate; | ||
import org.mozilla.vrbrowser.ui.widgets.WidgetPlacement; | ||
import org.mozilla.vrbrowser.utils.UIThreadExecutor; | ||
|
||
public class WhatsNewWidget extends UIDialog { | ||
|
||
private WhatsNewBinding mBinding; | ||
private Accounts mAccounts; | ||
|
||
public WhatsNewWidget(Context aContext) { | ||
super(aContext); | ||
initialize(); | ||
} | ||
|
||
public WhatsNewWidget(Context aContext, AttributeSet aAttrs) { | ||
super(aContext, aAttrs); | ||
initialize(); | ||
} | ||
|
||
public WhatsNewWidget(Context aContext, AttributeSet aAttrs, int aDefStyle) { | ||
super(aContext, aAttrs, aDefStyle); | ||
initialize(); | ||
} | ||
|
||
@SuppressLint("ClickableViewAccessibility") | ||
private void initialize() { | ||
LayoutInflater inflater = LayoutInflater.from(getContext()); | ||
|
||
mAccounts = ((VRBrowserApplication)getContext().getApplicationContext()).getAccounts(); | ||
|
||
// Inflate this data binding layout | ||
mBinding = DataBindingUtil.inflate(inflater, R.layout.whats_new, this, true); | ||
|
||
mBinding.signInButton.setOnClickListener(v -> signIn()); | ||
mBinding.startBrowsingButton.setOnClickListener(v -> onDismiss()); | ||
} | ||
|
||
@Override | ||
protected void initializeWidgetPlacement(WidgetPlacement aPlacement) { | ||
aPlacement.visible = false; | ||
aPlacement.width = WidgetPlacement.dpDimension(getContext(), R.dimen.whats_new_width); | ||
aPlacement.height = WidgetPlacement.dpDimension(getContext(), R.dimen.whats_new_height); | ||
aPlacement.parentAnchorX = 0.5f; | ||
aPlacement.parentAnchorY = 0.0f; | ||
aPlacement.anchorX = 0.5f; | ||
aPlacement.anchorY = 0.5f; | ||
aPlacement.translationY = WidgetPlacement.unitFromMeters(getContext(), R.dimen.settings_world_y) - | ||
WidgetPlacement.unitFromMeters(getContext(), R.dimen.window_world_y); | ||
aPlacement.translationZ = WidgetPlacement.unitFromMeters(getContext(), R.dimen.settings_world_z) - | ||
WidgetPlacement.unitFromMeters(getContext(), R.dimen.window_world_z); | ||
} | ||
|
||
@Override | ||
public void show(@ShowFlags int aShowFlags) { | ||
super.show(aShowFlags); | ||
|
||
mWidgetManager.pushWorldBrightness(this, WidgetManagerDelegate.DEFAULT_DIM_BRIGHTNESS); | ||
} | ||
|
||
@Override | ||
public void hide(@HideFlags int aHideFlags) { | ||
super.hide(aHideFlags); | ||
|
||
SettingsStore.getInstance(getContext()).setWhatsNewDisplayed(true); | ||
|
||
mWidgetManager.popWorldBrightness(this); | ||
} | ||
|
||
private void signIn() { | ||
mAccounts.getAuthenticationUrlAsync().thenAcceptAsync((url) -> { | ||
if (url != null) { | ||
mAccounts.setLoginOrigin(Accounts.LoginOrigin.SETTINGS); | ||
mWidgetManager.openNewTabForeground(url); | ||
mWidgetManager.getFocusedWindow().getSession().setUaMode(GeckoSessionSettings.USER_AGENT_MODE_VR); | ||
mWidgetManager.getFocusedWindow().getSession().loadUri(url); | ||
onDismiss(); | ||
} | ||
}, new UIThreadExecutor()); | ||
} | ||
|
||
} |
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.