├── .expo-shared └── assets.json ├── .gitignore ├── .graphqlconfig.yml ├── App.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── amplify ├── .config │ └── project-config.json ├── backend │ ├── api │ │ └── posapi │ │ │ ├── parameters.json │ │ │ ├── schema.graphql │ │ │ ├── stacks │ │ │ └── CustomResources.json │ │ │ └── transform.conf.json │ └── backend-config.json └── scripts │ ├── amplify-modelgen.js │ └── amplify-push.js ├── app.json ├── assets ├── appsync-refarch-offline.png ├── icon.png ├── screenshot-checkout.png ├── screenshot-home.png ├── screenshot-orders.png ├── screenshots.png └── splash.png ├── babel.config.js ├── package.json ├── src ├── components │ ├── Catalog │ │ ├── index.js │ │ └── styles.js │ ├── Checkout │ │ ├── index.js │ │ └── styles.js │ ├── OrderList │ │ ├── index.js │ │ └── styles.js │ ├── Orders │ │ └── index.js │ ├── Receipt │ │ ├── index.js │ │ └── styles.js │ └── Settings │ │ ├── index.js │ │ └── styles.js ├── graphql │ ├── mutations.js │ ├── queries.js │ ├── schema.json │ └── subscriptions.js ├── models │ ├── index.d.ts │ ├── index.js │ ├── schema.d.ts │ └── schema.js ├── redux │ ├── __tests__ │ │ └── reducers.test.js │ ├── actions.js │ ├── reducers.js │ └── store.js └── scripts │ └── loadProducts.js └── yarn.lock /.expo-shared/assets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/.expo-shared/assets.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/.gitignore -------------------------------------------------------------------------------- /.graphqlconfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/.graphqlconfig.yml -------------------------------------------------------------------------------- /App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/App.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/README.md -------------------------------------------------------------------------------- /amplify/.config/project-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/.config/project-config.json -------------------------------------------------------------------------------- /amplify/backend/api/posapi/parameters.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/backend/api/posapi/parameters.json -------------------------------------------------------------------------------- /amplify/backend/api/posapi/schema.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/backend/api/posapi/schema.graphql -------------------------------------------------------------------------------- /amplify/backend/api/posapi/stacks/CustomResources.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/backend/api/posapi/stacks/CustomResources.json -------------------------------------------------------------------------------- /amplify/backend/api/posapi/transform.conf.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/backend/api/posapi/transform.conf.json -------------------------------------------------------------------------------- /amplify/backend/backend-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/backend/backend-config.json -------------------------------------------------------------------------------- /amplify/scripts/amplify-modelgen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/scripts/amplify-modelgen.js -------------------------------------------------------------------------------- /amplify/scripts/amplify-push.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/amplify/scripts/amplify-push.js -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/app.json -------------------------------------------------------------------------------- /assets/appsync-refarch-offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/appsync-refarch-offline.png -------------------------------------------------------------------------------- /assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/icon.png -------------------------------------------------------------------------------- /assets/screenshot-checkout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/screenshot-checkout.png -------------------------------------------------------------------------------- /assets/screenshot-home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/screenshot-home.png -------------------------------------------------------------------------------- /assets/screenshot-orders.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/screenshot-orders.png -------------------------------------------------------------------------------- /assets/screenshots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/screenshots.png -------------------------------------------------------------------------------- /assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/assets/splash.png -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/babel.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/package.json -------------------------------------------------------------------------------- /src/components/Catalog/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Catalog/index.js -------------------------------------------------------------------------------- /src/components/Catalog/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Catalog/styles.js -------------------------------------------------------------------------------- /src/components/Checkout/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Checkout/index.js -------------------------------------------------------------------------------- /src/components/Checkout/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Checkout/styles.js -------------------------------------------------------------------------------- /src/components/OrderList/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/OrderList/index.js -------------------------------------------------------------------------------- /src/components/OrderList/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/OrderList/styles.js -------------------------------------------------------------------------------- /src/components/Orders/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Orders/index.js -------------------------------------------------------------------------------- /src/components/Receipt/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Receipt/index.js -------------------------------------------------------------------------------- /src/components/Receipt/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Receipt/styles.js -------------------------------------------------------------------------------- /src/components/Settings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Settings/index.js -------------------------------------------------------------------------------- /src/components/Settings/styles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/components/Settings/styles.js -------------------------------------------------------------------------------- /src/graphql/mutations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/graphql/mutations.js -------------------------------------------------------------------------------- /src/graphql/queries.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/graphql/queries.js -------------------------------------------------------------------------------- /src/graphql/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/graphql/schema.json -------------------------------------------------------------------------------- /src/graphql/subscriptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/graphql/subscriptions.js -------------------------------------------------------------------------------- /src/models/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/models/index.d.ts -------------------------------------------------------------------------------- /src/models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/models/index.js -------------------------------------------------------------------------------- /src/models/schema.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/models/schema.d.ts -------------------------------------------------------------------------------- /src/models/schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/models/schema.js -------------------------------------------------------------------------------- /src/redux/__tests__/reducers.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/redux/__tests__/reducers.test.js -------------------------------------------------------------------------------- /src/redux/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/redux/actions.js -------------------------------------------------------------------------------- /src/redux/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/redux/reducers.js -------------------------------------------------------------------------------- /src/redux/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/redux/store.js -------------------------------------------------------------------------------- /src/scripts/loadProducts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/src/scripts/loadProducts.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amazon-archives/aws-appsync-refarch-offline/HEAD/yarn.lock --------------------------------------------------------------------------------