Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions modules/navigation-tabs/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
// @flow

export {TabBarIcon} from './tabbar-icon'
export {TabNavigator} from './tabbed-view'
3 changes: 1 addition & 2 deletions source/views/calendar/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// @flow

import * as React from 'react'
import {TabNavigator} from '../../components/tabbed-view'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabNavigator, TabBarIcon} from '@frogpond/navigation-tabs'

import {CccCalendarView} from './calendar-ccc'

Expand Down
2 changes: 1 addition & 1 deletion source/views/menus/carleton-menus.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @flow
import * as React from 'react'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import {View, Platform, ScrollView, StyleSheet} from 'react-native'
import type {TopLevelViewPropsType} from '../types'
import {Row} from '@frogpond/layout'
Expand Down
2 changes: 1 addition & 1 deletion source/views/menus/dev-bonapp-picker.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @flow
import * as React from 'react'
import {View, TextInput, StyleSheet} from 'react-native'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import * as c from '@frogpond/colors'
import {Toolbar, ToolbarButton} from '@frogpond/toolbar'
import type {TopLevelViewPropsType} from '../types'
Expand Down
3 changes: 1 addition & 2 deletions source/views/menus/index.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
// @flow

import * as React from 'react'
import {TabNavigator} from '../../components/tabbed-view'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabNavigator, TabBarIcon} from '@frogpond/navigation-tabs'

import {BonAppHostedMenu} from './menu-bonapp'
import {GitHubHostedMenu} from './menu-github'
Expand Down
3 changes: 1 addition & 2 deletions source/views/news/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
// @flow

import * as React from 'react'
import {TabNavigator} from '../../components/tabbed-view'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabNavigator, TabBarIcon} from '@frogpond/navigation-tabs'

import * as newsImages from '../../../images/news-sources'
import NewsContainer from './news-container'
Expand Down
2 changes: 1 addition & 1 deletion source/views/sis/balances.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {
RefreshControl,
Alert,
} from 'react-native'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import {connect} from 'react-redux'
import {Cell, TableView, Section} from '@frogpond/tableview'
import {
Expand Down
2 changes: 1 addition & 1 deletion source/views/sis/course-search/search.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react'
import {StyleSheet, View, ScrollView} from 'react-native'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import * as c from '@frogpond/colors'
import {
updateCourseData,
Expand Down
2 changes: 1 addition & 1 deletion source/views/sis/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @flow

import {TabNavigator} from '../../components/tabbed-view'
import {TabNavigator} from '../../../modules/navigation-tabs/tabbed-view'

import BalancesView from './balances'
import StudentWorkView from './student-work'
Expand Down
2 changes: 1 addition & 1 deletion source/views/sis/student-work/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react'
import {StyleSheet, SectionList} from 'react-native'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import type {TopLevelViewPropsType} from '../../types'
import * as c from '@frogpond/colors'
import {ListSeparator, ListSectionHeader} from '@frogpond/lists'
Expand Down
2 changes: 1 addition & 1 deletion source/views/sis/tes.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// @flow

import * as React from 'react'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import openUrl from '../../components/open-url'
import type {TopLevelViewPropsType} from '../types'
import {NoticeView} from '@frogpond/notice'
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// @flow

import {TabNavigator} from '../../components/tabbed-view'
import {TabNavigator} from '../../../modules/navigation-tabs/tabbed-view'

// import WeeklyMovieView from './movie'
import {WebcamsView} from './webcams'
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/movie.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react'
import {StyleSheet, View, Text} from 'react-native'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'

export default function WeeklyMovieView() {
return (
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/radio/station-krlx.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react'
import * as c from '@frogpond/colors'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import {type TopLevelViewPropsType} from '../../types'
import * as logos from '../../../../images/streaming'
import {RadioControllerView} from './index'
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/radio/station-ksto.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react'
import {sto} from '@app/lib/colors'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import {type TopLevelViewPropsType} from '../../types'
import * as logos from '../../../../images/streaming'
import {RadioControllerView} from './index'
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/streams/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {StyleSheet, SectionList} from 'react-native'
import * as c from '@frogpond/colors'
import {ListSeparator, ListSectionHeader} from '@frogpond/lists'
import {NoticeView, LoadingView} from '@frogpond/notice'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import {StreamRow} from './row'
import toPairs from 'lodash/toPairs'
import groupBy from 'lodash/groupBy'
Expand Down
2 changes: 1 addition & 1 deletion source/views/streaming/webcams/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import * as React from 'react'
import {StyleSheet, ScrollView} from 'react-native'
import delay from 'delay'
import {reportNetworkProblem} from '../../../lib/report-network-problem'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import * as defaultData from '../../../../docs/webcams.json'
import {Column} from '@frogpond/layout'
import {partitionByIndex} from '../../../lib/partition-by-index'
Expand Down
3 changes: 1 addition & 2 deletions source/views/transportation/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@

import * as React from 'react'

import {TabNavigator} from '../../components/tabbed-view'
import {TabBarIcon} from '../../components/tabbar-icon'
import {TabNavigator, TabBarIcon} from '@frogpond/navigation-tabs'

import {OtherModesView} from './other-modes'
import {BusView} from './bus'
Expand Down
2 changes: 1 addition & 1 deletion source/views/transportation/other-modes/list.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import * as React from 'react'
import delay from 'delay'
import {OtherModesRow} from './row'
import {reportNetworkProblem} from '../../../lib/report-network-problem'
import {TabBarIcon} from '../../../components/tabbar-icon'
import {TabBarIcon} from '@frogpond/navigation-tabs'
import * as defaultData from '../../../../docs/transportation.json'
import * as c from '@frogpond/colors'
import {SectionList, StyleSheet} from 'react-native'
Expand Down