magrathea 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 57fd67de0fcd34e09f496ee3076a08ce3ff7d6fd54a0251ac3897593ddcf0147
4
+ data.tar.gz: 4f8ad9b036e35bbb78271a923c76ab666010839650e374a3b6f1491921c5ee63
5
+ SHA512:
6
+ metadata.gz: daa143c17db37b12d0e1ccc97f0b574edee5bc62a743f65d66de53806eaa1c2abf74a5dd046768db93ce30f2e3a451ee378c10e522a010836883a982d18131b3
7
+ data.tar.gz: bae262b2c12ba39d5e72d32476583d0f7349557ba35cf5f0d8e7d78a1ccfacb9b4c8a9b6ad0faf0db9667a9dcc171da5106fd92bb1ac6da0db37841f48402191
@@ -0,0 +1,13 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /_yardoc/
4
+ /coverage/
5
+ /doc/
6
+ /pkg/
7
+ /spec/reports/
8
+ /tmp/
9
+
10
+ # rspec failure tracking
11
+ .rspec_status
12
+
13
+ .idea/
data/.rspec ADDED
@@ -0,0 +1,3 @@
1
+ --format documentation
2
+ --color
3
+ --require spec_helper
@@ -0,0 +1,6 @@
1
+ ---
2
+ language: ruby
3
+ cache: bundler
4
+ rvm:
5
+ - 2.5.8
6
+ before_install: gem install bundler -v 2.1.4
@@ -0,0 +1,74 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ nationality, personal appearance, race, religion, or sexual identity and
10
+ orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at erikyuzwa@gmail.com. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at [https://contributor-covenant.org/version/1/4][version]
72
+
73
+ [homepage]: https://contributor-covenant.org
74
+ [version]: https://contributor-covenant.org/version/1/4/
data/Gemfile ADDED
@@ -0,0 +1,7 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in magrathea.gemspec
4
+ gemspec
5
+
6
+ gem "rake", "~> 12.0"
7
+ gem "rspec", "~> 3.0"
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2020 erik yuzwa
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in
13
+ all copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
+ THE SOFTWARE.
@@ -0,0 +1,72 @@
1
+ # Magrathea
2
+
3
+ This is intended to be a drop-in starting point for handling light and dark mode CSS switching in your Rails app.
4
+
5
+ I've come from supporting many web applications, each with various "evolutions" of their CSS / SCSS structure. It
6
+ remains to be seen how effective this approach is, but I was hoping to have something of a "starting point" that I could
7
+ bring to projects and/or could be used.
8
+
9
+ ## Installation
10
+
11
+ Add this line to your application's Gemfile:
12
+
13
+ ```ruby
14
+ gem 'magrathea'
15
+ ```
16
+
17
+ And then execute:
18
+
19
+ $ bundle install
20
+
21
+ Or install it yourself as:
22
+
23
+ $ gem install magrathea
24
+
25
+ ## Usage
26
+
27
+ In `application.css` add:
28
+ ```
29
+ *= require magrathea
30
+ ```
31
+
32
+ In `application.js` add:
33
+ ```
34
+ //= require magrathea
35
+ ```
36
+
37
+ Somewhere in your markup, you'll need to add the switch code as well:
38
+ ```
39
+ <div class="magrathea-switch-wrapper">
40
+ <label class="magrathea-switch" for="checkbox">
41
+ <input type="checkbox" id="checkbox" />
42
+ <div class="slider round"></div>
43
+ </label>
44
+ <em>Enable Dark Mode!</em>
45
+ </div>
46
+ ```
47
+
48
+
49
+ ## Development
50
+
51
+ After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also
52
+ run `bin/console` for an interactive prompt that will allow you to experiment.
53
+
54
+ To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version
55
+ number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git
56
+ commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
57
+
58
+ ## Contributing
59
+
60
+ Bug reports and pull requests are welcome on GitHub at https://github.com/erikyuzwa/magrathea. This project is intended
61
+ to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the
62
+ [code of conduct](https://github.com/erikyuzwa/magrathea/blob/master/CODE_OF_CONDUCT.md).
63
+
64
+
65
+ ## License
66
+
67
+ The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
68
+
69
+ ## Code of Conduct
70
+
71
+ Everyone interacting in the Magrathea project's codebases, issue trackers, chat rooms and mailing lists is expected to
72
+ follow the [code of conduct](https://github.com/erikyuzwa/magrathea/blob/master/CODE_OF_CONDUCT.md).
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "magrathea"
5
+
6
+ # You can add fixtures and/or initialization code here to make experimenting
7
+ # with your gem easier. You can also use a different console, if you like.
8
+
9
+ # (If you use this, don't forget to add pry to your Gemfile!)
10
+ # require "pry"
11
+ # Pry.start
12
+
13
+ require "irb"
14
+ IRB.start(__FILE__)
@@ -0,0 +1,8 @@
1
+ #!/usr/bin/env bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+ set -vx
5
+
6
+ bundle install
7
+
8
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,7 @@
1
+ require "magrathea/version"
2
+
3
+ module Magrathea
4
+ class Error < StandardError; end
5
+
6
+ class Engine < ::Rails::Engine; end
7
+ end
@@ -0,0 +1,3 @@
1
+ module Magrathea
2
+ VERSION = "0.1.0"
3
+ end
@@ -0,0 +1,32 @@
1
+ require_relative 'lib/magrathea/version'
2
+
3
+ Gem::Specification.new do |spec|
4
+ spec.name = "magrathea"
5
+ spec.version = Magrathea::VERSION
6
+ spec.authors = ["erik yuzwa"]
7
+ spec.email = ["erikyuzwa@gmail.com"]
8
+
9
+ spec.summary = %q{Write a short summary, because RubyGems requires one.}
10
+ spec.description = %q{Write a longer description or delete this line.}
11
+ spec.homepage = "https://github.com/erikyuzwa/magrathea"
12
+ spec.license = "MIT"
13
+ spec.required_ruby_version = Gem::Requirement.new(">= 2.3.0")
14
+
15
+ #spec.metadata["allowed_push_host"] = "TODO: Set to 'http://mygemserver.com'"
16
+
17
+ #spec.metadata["homepage_uri"] = spec.homepage
18
+ #spec.metadata["source_code_uri"] = "TODO: Put your gem's public repo URL here."
19
+ #spec.metadata["changelog_uri"] = "TODO: Put your gem's CHANGELOG.md URL here."
20
+
21
+ # Specify which files should be added to the gem when it is released.
22
+ # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
+ spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
+ `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
+ end
26
+ spec.bindir = "exe"
27
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
+ spec.require_paths = ["lib"]
29
+
30
+ # dependencies to ensure that our SCSS is recognized
31
+ spec.add_dependency "sass-rails", "~> 6.0"
32
+ end
@@ -0,0 +1,37 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+
6
+ (function() {
7
+
8
+ var win = this;
9
+ win.onload = function() {
10
+
11
+ const toggleSwitch = document.querySelector('.theme-switch input[type="checkbox"]');
12
+
13
+ function switchTheme(e) {
14
+ if (e.target.checked) {
15
+ document.documentElement.setAttribute('data-theme', 'dark');
16
+ localStorage.setItem('theme', 'dark'); //add this
17
+ } else {
18
+ document.documentElement.setAttribute('data-theme', 'light');
19
+ localStorage.setItem('theme', 'light'); //add this
20
+ }
21
+ }
22
+
23
+ toggleSwitch.addEventListener('change', switchTheme, false);
24
+
25
+ const currentTheme = localStorage.getItem('theme') ? localStorage.getItem('theme') : null;
26
+
27
+ if (currentTheme) {
28
+ document.documentElement.setAttribute('data-theme', currentTheme);
29
+
30
+ if (currentTheme === 'dark') {
31
+ toggleSwitch.checked = true;
32
+ }
33
+ }
34
+ };
35
+
36
+ }).call(this);
37
+
@@ -0,0 +1,16 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ $light-primary-color: #302ae6;
6
+ $light-secondary-color: #536390;
7
+ $light-font-color: #424242;
8
+ $light-bg-color: #fff;
9
+ $light-heading-color: #292922;
10
+
11
+ $dark-primary-color: #9a97f3;
12
+ $dark-secondary-color: #818cab;
13
+ $dark-font-color: #e1e1ff;
14
+ $dark-bg-color: #161625;
15
+ $dark-heading-color: #818cab;
16
+
@@ -0,0 +1,11 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ [data-theme="dark"] {
6
+ --primary-color: $dark-primary-color;
7
+ --secondary-color: $dark-secondary-color;
8
+ --font-color: $dark-font-color;
9
+ --bg-color: $dark-bg-color;
10
+ --heading-color: $dark-heading-color;
11
+ }
@@ -0,0 +1,11 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ :root {
6
+ --primary-color: $light-primary-color;
7
+ --secondary-color: $light-secondary-color;
8
+ --font-color: $light-font-color;
9
+ --bg-color: $light-bg-color;
10
+ --heading-color: $light-heading-color;
11
+ }
@@ -0,0 +1,67 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ /**
6
+ * some simple CSS to style the dark-light theme switch
7
+ */
8
+
9
+ .theme-switch-wrapper {
10
+ display: flex;
11
+ align-items: center;
12
+
13
+ em {
14
+ margin-left: 10px;
15
+ font-size: 1rem;
16
+ }
17
+
18
+ .theme-switch {
19
+ display: inline-block;
20
+ height: 34px;
21
+ position: relative;
22
+ width: 60px;
23
+ }
24
+
25
+ .theme-switch input {
26
+ display:none;
27
+ }
28
+
29
+ .slider {
30
+ background-color: #ccc;
31
+ bottom: 0;
32
+ cursor: pointer;
33
+ left: 0;
34
+ position: absolute;
35
+ right: 0;
36
+ top: 0;
37
+ transition: .4s;
38
+ }
39
+
40
+ .slider:before {
41
+ background-color: #fff;
42
+ bottom: 4px;
43
+ content: "";
44
+ height: 26px;
45
+ left: 4px;
46
+ position: absolute;
47
+ transition: .4s;
48
+ width: 26px;
49
+ }
50
+
51
+ input:checked + .slider {
52
+ background-color: #66bb6a;
53
+ }
54
+
55
+ input:checked + .slider:before {
56
+ transform: translateX(26px);
57
+ }
58
+
59
+ .slider.round {
60
+ border-radius: 34px;
61
+ }
62
+
63
+ .slider.round:before {
64
+ border-radius: 50%;
65
+ }
66
+
67
+ }
@@ -0,0 +1,16 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ body {
6
+ background-color: var(--bg-color);
7
+ color: var(--font-color);
8
+ }
9
+
10
+ h1 {
11
+ color: var(--secondary-color);
12
+ }
13
+
14
+ a {
15
+ color: var(--primary-color);
16
+ }
@@ -0,0 +1,13 @@
1
+ //
2
+ // Copyright (c) Erik Yuzwa of Wazoo Media. All rights reserved.
3
+ // Licensed under the MIT license. See LICENSE.txt file in the project root for details.
4
+ //
5
+ // See the README.md file for detailed installation instructions
6
+
7
+ @import "colors";
8
+ @import "light";
9
+ @import "dark";
10
+ @import "typography";
11
+
12
+ @import "theme-switch";
13
+
metadata ADDED
@@ -0,0 +1,78 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: magrathea
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - erik yuzwa
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2020-12-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: sass-rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '6.0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '6.0'
27
+ description: Write a longer description or delete this line.
28
+ email:
29
+ - erikyuzwa@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - ".gitignore"
35
+ - ".rspec"
36
+ - ".travis.yml"
37
+ - CODE_OF_CONDUCT.md
38
+ - Gemfile
39
+ - LICENSE.txt
40
+ - README.md
41
+ - Rakefile
42
+ - bin/console
43
+ - bin/setup
44
+ - lib/magrathea.rb
45
+ - lib/magrathea/version.rb
46
+ - magrathea.gemspec
47
+ - vendor/assets/javascripts/magrathea.js
48
+ - vendor/assets/stylesheets/_colors.scss
49
+ - vendor/assets/stylesheets/_dark.scss
50
+ - vendor/assets/stylesheets/_light.scss
51
+ - vendor/assets/stylesheets/_theme-switch.scss
52
+ - vendor/assets/stylesheets/_typography.scss
53
+ - vendor/assets/stylesheets/magrathea.scss
54
+ homepage: https://github.com/erikyuzwa/magrathea
55
+ licenses:
56
+ - MIT
57
+ metadata: {}
58
+ post_install_message:
59
+ rdoc_options: []
60
+ require_paths:
61
+ - lib
62
+ required_ruby_version: !ruby/object:Gem::Requirement
63
+ requirements:
64
+ - - ">="
65
+ - !ruby/object:Gem::Version
66
+ version: 2.3.0
67
+ required_rubygems_version: !ruby/object:Gem::Requirement
68
+ requirements:
69
+ - - ">="
70
+ - !ruby/object:Gem::Version
71
+ version: '0'
72
+ requirements: []
73
+ rubyforge_project:
74
+ rubygems_version: 2.7.6.2
75
+ signing_key:
76
+ specification_version: 4
77
+ summary: Write a short summary, because RubyGems requires one.
78
+ test_files: []