Skip to content

Instantly share code, notes, and snippets.

@vinipachecov
Created May 30, 2020 22:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vinipachecov/c3460a8306cea69314884d896b03ced6 to your computer and use it in GitHub Desktop.
Save vinipachecov/c3460a8306cea69314884d896b03ced6 to your computer and use it in GitHub Desktop.
App file for React-Native with TypeORM setup
import React, { useCallback, useEffect, ReactNode, useState } from 'react';
import { StyleSheet, View, Text } from 'react-native';
import { createConnection, getRepository, Connection } from 'typeorm/browser';
import { Author } from './entities/author';
import { Category } from './entities/category';
import { Post } from './entities/post';
const AuthorTile = ({
name,
birthdate,
}: {
name: string;
birthdate: string;
}) => {
return (
<View>
<Text>{name}</Text>
<Text>{birthdate}</Text>
</View>
);
};
const App: () => ReactNode = () => {
const [defaultConnection, setconnection] = useState<Connection | null>(null);
const [authors, setAuthors] = useState<Author[]>([]);
const setupConnection = useCallback(async () => {
try {
const connection = await createConnection({
type: 'react-native',
database: 'test',
location: 'default',
logging: ['error', 'query', 'schema'],
synchronize: true,
entities: [Author, Category, Post],
});
setconnection(connection);
getAuthors();
} catch (error) {
console.log(error);
}
}, []);
const getAuthors = useCallback(async () => {
const authorRepository = getRepository(Author);
let result = await authorRepository.find();
if (result.length === 0) {
const newAuthor = new Author();
newAuthor.birthdate = '10-03-1940';
newAuthor.name = 'Chuck Norris';
await authorRepository.save(newAuthor);
result = await authorRepository.find();
}
setAuthors(result);
}, []);
useEffect(() => {
if (!defaultConnection) {
setupConnection();
} else {
getAuthors();
}
}, []);
return (
<View style={styles.container}>
<Text style={styles.title}>My List of Authors</Text>
{authors.map((author) => (
<AuthorTile key={author.id.toString()} {...author} />
))}
</View>
);
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center',
},
title: { fontSize: 16, color: 'black' },
});
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment