You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-16 00:14:34 +02:00
@ -1,7 +1,7 @@
|
||||
import * as React from 'react';
|
||||
import { Icon, Card, Chip } from 'react-native-paper';
|
||||
import { Icon, Card, Chip, Text } from 'react-native-paper';
|
||||
import { _ } from '@joplin/lib/locale';
|
||||
import { Alert, Linking, View } from 'react-native';
|
||||
import { Alert, Linking, TextStyle, View } from 'react-native';
|
||||
import { PluginItem } from '@joplin/lib/components/shared/config/plugins/types';
|
||||
import shim from '@joplin/lib/shim';
|
||||
import PluginService from '@joplin/lib/services/plugins/PluginService';
|
||||
@ -56,6 +56,10 @@ const onRecommendedPress = () => {
|
||||
// eslint-disable-next-line @typescript-eslint/no-explicit-any -- Old code before rule was applied
|
||||
const PluginIcon = (props: any) => <Icon {...props} source='puzzle'/>;
|
||||
|
||||
const versionTextStyle: TextStyle = {
|
||||
opacity: 0.8,
|
||||
};
|
||||
|
||||
const PluginBox: React.FC<Props> = props => {
|
||||
const manifest = props.item.manifest;
|
||||
const item = props.item;
|
||||
@ -157,10 +161,13 @@ const PluginBox: React.FC<Props> = props => {
|
||||
|
||||
const updateStateIsIdle = props.updateState !== UpdateState.Idle;
|
||||
|
||||
const titleComponent = <>
|
||||
<Text variant='titleMedium'>{manifest.name}</Text> <Text variant='bodySmall' style={versionTextStyle}>v{manifest.version}</Text>
|
||||
</>;
|
||||
return (
|
||||
<Card style={{ margin: 8, opacity: props.isCompatible ? undefined : 0.75 }} testID='plugin-card'>
|
||||
<Card.Title
|
||||
title={manifest.name}
|
||||
title={titleComponent}
|
||||
subtitle={manifest.description}
|
||||
left={PluginIcon}
|
||||
/>
|
||||
|
Reference in New Issue
Block a user