2019-04-24 18:23:03 +03:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
|
|
|
<ContentPage
|
|
|
|
xmlns="http://xamarin.com/schemas/2014/forms"
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
|
|
x:Class="Bit.App.Pages.ViewPage"
|
|
|
|
xmlns:pages="clr-namespace:Bit.App.Pages"
|
|
|
|
xmlns:u="clr-namespace:Bit.App.Utilities"
|
2019-04-26 07:26:09 +03:00
|
|
|
xmlns:controls="clr-namespace:Bit.App.Controls"
|
2019-04-26 23:58:20 +03:00
|
|
|
xmlns:views="clr-namespace:Bit.Core.Models.View;assembly=BitwardenCore"
|
2019-04-27 04:53:39 +03:00
|
|
|
xmlns:models="clr-namespace:Bit.App.Models"
|
2019-04-24 18:23:03 +03:00
|
|
|
x:DataType="pages:ViewPageViewModel"
|
2019-04-26 23:58:20 +03:00
|
|
|
x:Name="_page"
|
2019-04-24 18:23:03 +03:00
|
|
|
Title="{Binding PageTitle}">
|
|
|
|
<ContentPage.BindingContext>
|
|
|
|
<pages:ViewPageViewModel />
|
|
|
|
</ContentPage.BindingContext>
|
|
|
|
|
|
|
|
<ContentPage.ToolbarItems>
|
|
|
|
<ToolbarItem Icon="cogs.png"
|
|
|
|
Text="{u:I18n Edit}" />
|
|
|
|
</ContentPage.ToolbarItems>
|
2019-04-27 04:53:39 +03:00
|
|
|
|
|
|
|
<ContentPage.Resources>
|
|
|
|
<ResourceDictionary>
|
|
|
|
<u:InverseBoolConverter x:Key="inverseBool" />
|
|
|
|
</ResourceDictionary>
|
|
|
|
</ContentPage.Resources>
|
2019-04-24 18:23:03 +03:00
|
|
|
|
2019-04-26 23:58:20 +03:00
|
|
|
<ScrollView>
|
|
|
|
<StackLayout Spacing="20">
|
|
|
|
<StackLayout StyleClass="box">
|
|
|
|
<StackLayout StyleClass="box-row-header">
|
|
|
|
<Label Text="{u:I18n ItemInformation}"
|
|
|
|
StyleClass="box-header, box-header-platform" />
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout StyleClass="box-row">
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n Name}"
|
|
|
|
StyleClass="box-label" />
|
|
|
|
<Label
|
|
|
|
Text="{Binding Cipher.Name, Mode=OneWay}"
|
|
|
|
StyleClass="box-value" />
|
|
|
|
</StackLayout>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
|
|
|
<StackLayout IsVisible="{Binding IsLogin}"
|
|
|
|
Spacing="0"
|
|
|
|
Padding="0">
|
2019-04-27 06:37:21 +03:00
|
|
|
<Grid StyleClass="box-row" IsVisible="{Binding ShowUsername}">
|
2019-04-26 23:58:20 +03:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n Username}"
|
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<Label
|
|
|
|
Text="{Binding Cipher.Login.Username, Mode=OneWay}"
|
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding CopyCommand}"
|
|
|
|
CommandParameter="LoginUsername"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.RowSpan="2" />
|
|
|
|
</Grid>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
2019-04-27 06:37:21 +03:00
|
|
|
<Grid StyleClass="box-row" IsVisible="{Binding ShowPasswordBox}">
|
2019-04-26 23:58:20 +03:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
2019-04-27 06:37:21 +03:00
|
|
|
<ColumnDefinition Width="Auto" />
|
2019-04-27 07:19:44 +03:00
|
|
|
<ColumnDefinition Width="Auto" />
|
2019-04-26 23:58:20 +03:00
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n Password}"
|
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0" />
|
2019-04-27 06:37:21 +03:00
|
|
|
<controls:MonoLabel
|
2019-04-26 23:58:20 +03:00
|
|
|
Text="{Binding Cipher.Login.MaskedPassword, Mode=OneWay}"
|
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
2019-04-27 06:37:21 +03:00
|
|
|
Grid.Column="0"
|
|
|
|
IsVisible="{Binding ShowPassword, Converter={StaticResource inverseBool}}" />
|
|
|
|
<controls:MonoLabel
|
2019-04-27 06:58:15 +03:00
|
|
|
FormattedText="{Binding ColoredPassword, Mode=OneWay}"
|
2019-04-27 06:37:21 +03:00
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="0"
|
|
|
|
IsVisible="{Binding ShowPassword}" />
|
2019-04-27 07:19:44 +03:00
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding CheckPasswordCommand}"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.RowSpan="2" />
|
2019-04-27 06:37:21 +03:00
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text="{Binding ShowPasswordIcon}"
|
|
|
|
Command="{Binding TogglePasswordCommand}"
|
|
|
|
Grid.Row="0"
|
2019-04-27 07:19:44 +03:00
|
|
|
Grid.Column="2"
|
2019-04-27 06:37:21 +03:00
|
|
|
Grid.RowSpan="2" />
|
2019-04-26 23:58:20 +03:00
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding CopyCommand}"
|
|
|
|
CommandParameter="LoginPassword"
|
|
|
|
Grid.Row="0"
|
2019-04-27 07:19:44 +03:00
|
|
|
Grid.Column="3"
|
2019-04-26 23:58:20 +03:00
|
|
|
Grid.RowSpan="2" />
|
|
|
|
</Grid>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
|
|
|
<Grid StyleClass="box-row" IsVisible="{Binding ShowTotp}">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n VerificationCodeTotp}"
|
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0" />
|
2019-04-27 06:37:21 +03:00
|
|
|
<controls:MonoLabel
|
2019-04-26 23:58:20 +03:00
|
|
|
Text="{Binding TotpCodeFormatted, Mode=OneWay}"
|
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<Label
|
|
|
|
Text="{Binding TotpSec, Mode=OneWay}"
|
|
|
|
Style="{DynamicResource textTotp}"
|
|
|
|
Margin="0, 0, 10, 0"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.RowSpan="2"
|
|
|
|
HorizontalOptions="End"
|
|
|
|
HorizontalTextAlignment="End"
|
|
|
|
VerticalOptions="CenterAndExpand"/>
|
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding CopyCommand}"
|
|
|
|
CommandParameter="LoginTotp"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="2"
|
|
|
|
Grid.RowSpan="2" />
|
|
|
|
</Grid>
|
|
|
|
<BoxView StyleClass="box-row-separator" IsVisible="{Binding ShowTotp}" />
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout IsVisible="{Binding IsCard}">
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout IsVisible="{Binding IsIdentity}">
|
|
|
|
|
|
|
|
</StackLayout>
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout StyleClass="box" IsVisible="{Binding ShowUris}">
|
|
|
|
<StackLayout StyleClass="box-row-header">
|
|
|
|
<Label Text="{u:I18n URIs}"
|
|
|
|
StyleClass="box-header, box-header-platform" />
|
|
|
|
</StackLayout>
|
|
|
|
<controls:RepeaterView ItemsSource="{Binding Cipher.Login.Uris}">
|
|
|
|
<controls:RepeaterView.ItemTemplate>
|
|
|
|
<DataTemplate x:DataType="views:LoginUriView">
|
|
|
|
<StackLayout Spacing="0" Padding="0">
|
|
|
|
<Grid StyleClass="box-row">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n URI}"
|
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
2019-04-27 04:53:39 +03:00
|
|
|
Grid.Column="0"
|
|
|
|
IsVisible="{Binding IsWebsite, Mode=OneWay, Converter={StaticResource inverseBool}}" />
|
|
|
|
<Label
|
|
|
|
Text="{u:I18n Website}"
|
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0"
|
|
|
|
IsVisible="{Binding IsWebsite, Mode=OneWay}" />
|
2019-04-26 23:58:20 +03:00
|
|
|
<Label
|
|
|
|
Text="{Binding HostnameOrUri, Mode=OneWay}"
|
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
2019-04-27 05:44:15 +03:00
|
|
|
Text=""
|
2019-04-26 23:58:20 +03:00
|
|
|
Command="{Binding BindingContext.LaunchUriCommand, Source={x:Reference _page}}"
|
|
|
|
CommandParameter="{Binding .}"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
2019-04-27 04:53:39 +03:00
|
|
|
Grid.RowSpan="2"
|
|
|
|
IsVisible="{Binding CanLaunch, Mode=OneWay}" />
|
2019-04-26 23:58:20 +03:00
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding BindingContext.CopyUriCommand, Source={x:Reference _page}}"
|
|
|
|
CommandParameter="{Binding .}"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="2"
|
|
|
|
Grid.RowSpan="2" />
|
|
|
|
</Grid>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
|
|
|
</StackLayout>
|
|
|
|
</DataTemplate>
|
|
|
|
</controls:RepeaterView.ItemTemplate>
|
|
|
|
</controls:RepeaterView>
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout StyleClass="box" IsVisible="{Binding ShowNotes}">
|
|
|
|
<StackLayout StyleClass="box-row-header">
|
|
|
|
<Label Text="{u:I18n Notes}"
|
|
|
|
StyleClass="box-header, box-header-platform" />
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout StyleClass="box-row">
|
|
|
|
<Label
|
|
|
|
Text="{Binding Cipher.Notes, Mode=OneWay}"
|
|
|
|
StyleClass="box-value"
|
|
|
|
LineBreakMode="WordWrap" />
|
|
|
|
</StackLayout>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
|
|
|
</StackLayout>
|
|
|
|
<StackLayout StyleClass="box" IsVisible="{Binding ShowFields}">
|
|
|
|
<StackLayout StyleClass="box-row-header">
|
|
|
|
<Label Text="{u:I18n CustomFields}"
|
|
|
|
StyleClass="box-header, box-header-platform" />
|
|
|
|
</StackLayout>
|
2019-04-27 04:53:39 +03:00
|
|
|
<controls:RepeaterView ItemsSource="{Binding Fields}">
|
2019-04-26 23:58:20 +03:00
|
|
|
<controls:RepeaterView.ItemTemplate>
|
2019-04-27 04:53:39 +03:00
|
|
|
<DataTemplate x:DataType="models:ViewFieldViewModel">
|
2019-04-26 23:58:20 +03:00
|
|
|
<StackLayout Spacing="0" Padding="0">
|
|
|
|
<Grid StyleClass="box-row">
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
<RowDefinition Height="Auto" />
|
|
|
|
<RowDefinition Height="*" />
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
<ColumnDefinition Width="*" />
|
|
|
|
<ColumnDefinition Width="Auto" />
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Label
|
2019-04-27 04:53:39 +03:00
|
|
|
Text="{Binding Field.Name, Mode=OneWay}"
|
2019-04-26 23:58:20 +03:00
|
|
|
StyleClass="box-label"
|
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<Label
|
2019-04-27 04:53:39 +03:00
|
|
|
Text="{Binding Field.Value, Mode=OneWay}"
|
2019-04-26 23:58:20 +03:00
|
|
|
StyleClass="box-value"
|
|
|
|
Grid.Row="1"
|
|
|
|
Grid.Column="0" />
|
|
|
|
<controls:FaButton
|
|
|
|
StyleClass="box-row-button, box-row-button-platform"
|
|
|
|
Text=""
|
|
|
|
Command="{Binding BindingContext.CopyFieldCommand, Source={x:Reference _page}}"
|
2019-04-27 04:53:39 +03:00
|
|
|
CommandParameter="{Binding Field}"
|
2019-04-26 23:58:20 +03:00
|
|
|
Grid.Row="0"
|
|
|
|
Grid.Column="1"
|
|
|
|
Grid.RowSpan="2" />
|
|
|
|
</Grid>
|
|
|
|
<BoxView StyleClass="box-row-separator" />
|
|
|
|
</StackLayout>
|
|
|
|
</DataTemplate>
|
|
|
|
</controls:RepeaterView.ItemTemplate>
|
|
|
|
</controls:RepeaterView>
|
|
|
|
</StackLayout>
|
2019-04-24 18:23:03 +03:00
|
|
|
</StackLayout>
|
2019-04-26 23:58:20 +03:00
|
|
|
</ScrollView>
|
2019-04-24 18:23:03 +03:00
|
|
|
|
|
|
|
</ContentPage>
|