├── .dockerignore ├── .eslintrc.cjs ├── .github ├── dependabot.yml ├── readme │ ├── authors.svg │ ├── botprzemek.svg │ ├── braspi.svg │ ├── contributing.svg │ ├── features.svg │ ├── heading.svg │ ├── icons.svg │ ├── interface.svg │ ├── license.svg │ ├── mockup.png │ ├── navigation.svg │ ├── ponurakk.svg │ ├── security.svg │ ├── service.svg │ ├── setup.svg │ ├── technologies.svg │ └── workflow.svg └── workflows │ └── assign.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── compose.yaml ├── env.d.ts ├── index.html ├── nginx.conf ├── package.json ├── postcss.config.js ├── public ├── favicon-dark.ico └── favicon-light.ico ├── src ├── App.vue ├── assets │ ├── css │ │ └── tailwind.css │ ├── font │ │ ├── inter-v13-latin_latin-ext-800.woff2 │ │ └── inter-v13-latin_latin-ext-regular.woff2 │ └── image │ │ ├── background.svg │ │ └── logo.svg ├── components │ ├── HeaderComponent.vue │ ├── InputComponent.vue │ ├── MessageComponent.vue │ ├── NavigationComponent.vue │ ├── SearchComponent.vue │ ├── chats │ │ ├── OnlineUsers.vue │ │ └── RecentChats.vue │ ├── icon │ │ ├── BaseIcon.vue │ │ ├── DiscoverIcon.vue │ │ ├── LogoIcon.vue │ │ ├── MessagesIcon.vue │ │ ├── SearchIcon.vue │ │ └── SettingsIcon.vue │ └── settings │ │ └── Setting.vue ├── main.ts ├── router │ └── index.ts ├── stores │ └── counter.ts ├── types │ ├── dayTime.ts │ ├── language.ts │ ├── status.ts │ ├── theme.ts │ └── user.d.ts ├── utils │ └── dayTimeTitle.ts └── views │ ├── ChatView.vue │ ├── ChatsView.vue │ ├── DiscoverView.vue │ ├── IndexView.vue │ └── SettingsView.vue ├── tailwind.config.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts /.dockerignore: -------------------------------------------------------------------------------- 1 | **/node_modules -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/readme/authors.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/authors.svg -------------------------------------------------------------------------------- /.github/readme/botprzemek.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/botprzemek.svg -------------------------------------------------------------------------------- /.github/readme/braspi.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/braspi.svg -------------------------------------------------------------------------------- /.github/readme/contributing.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/contributing.svg -------------------------------------------------------------------------------- /.github/readme/features.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/features.svg -------------------------------------------------------------------------------- /.github/readme/heading.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/heading.svg -------------------------------------------------------------------------------- /.github/readme/icons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/icons.svg -------------------------------------------------------------------------------- /.github/readme/interface.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/interface.svg -------------------------------------------------------------------------------- /.github/readme/license.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/license.svg -------------------------------------------------------------------------------- /.github/readme/mockup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/mockup.png -------------------------------------------------------------------------------- /.github/readme/navigation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/navigation.svg -------------------------------------------------------------------------------- /.github/readme/ponurakk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/ponurakk.svg -------------------------------------------------------------------------------- /.github/readme/security.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/security.svg -------------------------------------------------------------------------------- /.github/readme/service.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/service.svg -------------------------------------------------------------------------------- /.github/readme/setup.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/setup.svg -------------------------------------------------------------------------------- /.github/readme/technologies.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/technologies.svg -------------------------------------------------------------------------------- /.github/readme/workflow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/readme/workflow.svg -------------------------------------------------------------------------------- /.github/workflows/assign.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.github/workflows/assign.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/SECURITY.md -------------------------------------------------------------------------------- /compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/compose.yaml -------------------------------------------------------------------------------- /env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/index.html -------------------------------------------------------------------------------- /nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/nginx.conf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/favicon-dark.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/public/favicon-dark.ico -------------------------------------------------------------------------------- /public/favicon-light.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/public/favicon-light.ico -------------------------------------------------------------------------------- /src/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/App.vue -------------------------------------------------------------------------------- /src/assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/assets/css/tailwind.css -------------------------------------------------------------------------------- /src/assets/font/inter-v13-latin_latin-ext-800.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/assets/font/inter-v13-latin_latin-ext-800.woff2 -------------------------------------------------------------------------------- /src/assets/font/inter-v13-latin_latin-ext-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/assets/font/inter-v13-latin_latin-ext-regular.woff2 -------------------------------------------------------------------------------- /src/assets/image/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/assets/image/background.svg -------------------------------------------------------------------------------- /src/assets/image/logo.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/components/HeaderComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/HeaderComponent.vue -------------------------------------------------------------------------------- /src/components/InputComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/InputComponent.vue -------------------------------------------------------------------------------- /src/components/MessageComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/MessageComponent.vue -------------------------------------------------------------------------------- /src/components/NavigationComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/NavigationComponent.vue -------------------------------------------------------------------------------- /src/components/SearchComponent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/SearchComponent.vue -------------------------------------------------------------------------------- /src/components/chats/OnlineUsers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/chats/OnlineUsers.vue -------------------------------------------------------------------------------- /src/components/chats/RecentChats.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/chats/RecentChats.vue -------------------------------------------------------------------------------- /src/components/icon/BaseIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/BaseIcon.vue -------------------------------------------------------------------------------- /src/components/icon/DiscoverIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/DiscoverIcon.vue -------------------------------------------------------------------------------- /src/components/icon/LogoIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/LogoIcon.vue -------------------------------------------------------------------------------- /src/components/icon/MessagesIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/MessagesIcon.vue -------------------------------------------------------------------------------- /src/components/icon/SearchIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/SearchIcon.vue -------------------------------------------------------------------------------- /src/components/icon/SettingsIcon.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/icon/SettingsIcon.vue -------------------------------------------------------------------------------- /src/components/settings/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/components/settings/Setting.vue -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/router/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/router/index.ts -------------------------------------------------------------------------------- /src/stores/counter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/stores/counter.ts -------------------------------------------------------------------------------- /src/types/dayTime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/types/dayTime.ts -------------------------------------------------------------------------------- /src/types/language.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/types/language.ts -------------------------------------------------------------------------------- /src/types/status.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/types/status.ts -------------------------------------------------------------------------------- /src/types/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/types/theme.ts -------------------------------------------------------------------------------- /src/types/user.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/types/user.d.ts -------------------------------------------------------------------------------- /src/utils/dayTimeTitle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/utils/dayTimeTitle.ts -------------------------------------------------------------------------------- /src/views/ChatView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/views/ChatView.vue -------------------------------------------------------------------------------- /src/views/ChatsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/views/ChatsView.vue -------------------------------------------------------------------------------- /src/views/DiscoverView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/views/DiscoverView.vue -------------------------------------------------------------------------------- /src/views/IndexView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/views/IndexView.vue -------------------------------------------------------------------------------- /src/views/SettingsView.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/src/views/SettingsView.vue -------------------------------------------------------------------------------- /tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/tailwind.config.ts -------------------------------------------------------------------------------- /tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/tsconfig.app.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/tsconfig.node.json -------------------------------------------------------------------------------- /vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/not-byte/blink-app/HEAD/vite.config.ts --------------------------------------------------------------------------------