Jump to content

arjen

Members
  • Posts

    1,222
  • Joined

  • Last visited

  • Days Won

    8

Posts posted by arjen

  1. 4 hours ago, teppo said:

    As a matter of fact Tailwind is unopinionated: the framework doesn't come with any pre-built components, so it's entirely up to you what you build with it.

    Reminds me of a particular CMS ?

    4 hours ago, teppo said:

    One downside, though, is that when you're building something really big, it can easily get out of hand unless you set some ground rules / constraints for yourself in terms of how many spacing variations, colours, etc. you're going to use.

    This is equally true when using BEM-like methods. Even if you are using content-agnostic components (hint) it is very hard to maintain CSS in large projects. Especially in teams where more devs are involved. With the rise and rise of Vue and React this becomes somewhat more manageable if you scope your css to your component, but still...

    That being said: I'm currently working on a large project for myself and I am speeding up my development flow faster than I could imagine using Tailwind. And I used to be anti concering utility classes ?.

    • Like 2
  2. 10 hours ago, Robin S said:

    I think this is the crux of it - it's mostly a communication issue.

    I can't agree more. Of course there is a logical explanation behind the current situation - there mostly always is. But the open PR's could easily be interpret as a "stale" project. Of course this is not the case as ProcessWire is one of the most worked on CMS. By mostly one guy (not to undercut the other module contributors, lots of love there). Which on itself is pretty amazing. Therefore this is true too:

    18 hours ago, horst said:

    Be glad that it is this way. There were so many projects that started that way, but opened up and broke 1 or 2 years later."

    ProcessWire finds itself positioned in a very difficult spot. To clients this isn't very much a problem, since I always find it to be reason of the professional to sell its tools to their client. But selling the CMS to other developers/companies is a lot more difficult. There are quite a few pain points such as the open PR's, the first impressions of the master branch (last commit: 21 dec 2018), the already dated design of the website, the lack of github stars. When I Google for ProcessWire the repository of Ryan is even on a higher position than the current repository (last commit: 7 Oct 2016). The notice on top isn't very clear. 

    These are not important to me*, but first impressions do matter.

    [off-topic]We should really highlight these strong points: the really great custom field CMS, the speed of development (example: the .wepb support), the great (paid) modules, the great community, second-to-none multilingual support, the great documentation and the greatly written blogs too! Ryan has his way with words.[/off-topic]

    * I had to look twice myself ?

    • Like 5
  3. 16 hours ago, Sergio said:

    The easiest way I've found is to use Laravel Mix with two plugins, Laravel Mix Tailwind and Laravel Mix PurgeCSS to reduce file size by going through all php templates. But note, the website is not running the purged version yet, as I'm working on some configs on javascript generated classes and classes set by the user via admin (using RepeaterMatrix). 

    Thanks! 

    This is what got me thinking as well since I use a lot of generated classes (also in PHP and JS). How well a job does purgecss do with those? I know you can whitelist classes, but it feels cumbersome to maintain it.

  4. Great looking site!

    On 8/7/2019 at 6:54 PM, Sergio said:

    ...Tailwind CSS as I can build an interface much quicker using it. I became a huge fan of it...

    On 8/8/2019 at 11:26 AM, Sergio said:

    Yes, Tailwind is awesome! Responsive classes are a clever idea indeed, much easier to work with. The authors did an excellent job and keep improving it.

    I'm pretty interested in Tailwind too. I'd love to hear some pointers on your set-up and workflow? How do you guys handle the filesize? I've read about Purgecss and I'm curious how integrate this with ProcessWire.

  5. Ah, the or groups selector post ?

    We really needed this a few years ago. Unfortunately Ryan did not manage to implement this. No hard feelings though since this is not an easy task. But I do believe it should be developed since this is a big USP over other rule builders. ProcessWire can really shine with these kind of data structures. 

    I eventually created a Process module which created pages has a sort of multiplier field of InputfieldSelector. The client could scope the main selector and add groups by adding more selectors.

    - Main Selector template=foo (InputfieldSelector)
    |-- Selector 1 (OR) somevalue=bar (repeatable field with InputfieldSelector)
    |-- Selector 2 (OR) someothervalue=foobar (etc)

    This fields eventually resolved in: "template=foo, (somevalue=bar), (someothervalue=foobar)". I created another Process Module we rendered these selectors in a list and created urls (using the great ProcessPageListerUrls). This might feel like overkill, but the client wanted to query complex selectors.

    • Like 3
  6. 16 hours ago, bernhard said:

    Processwire would be great for that, wouldn't it?

    I don't think I would build such a system in ProcessWire. Money stuff I would prefer to be handled by a system which has some kind of Event Sourcing. But I get your idea ?

    16 hours ago, bernhard said:

    Setting the fields themselves to read only sounds like a proper solution, but that's a lot of effort for such a simple and basic task! Imagine you had more fields! And imagine you added a new field later to the invoice template and forgot to set the field restriction... You'd have an editable field on a read only page.

     IMHO The fact that you've built your own custom process module for this proves that the tools we have are not enough!

    True. When you have 300+ fields it will become a tedious job to add another role and assign all fields. And than another role. 

    16 hours ago, bernhard said:

     I just want to have a role that can see all data of invoice templates but not edit them. I think this is a fundamental hickup in the permissions we have.

    We only needed certain fields were editable and some not. I can see your point.

    That being said maybe a better solution would be to create a Process module which can handle these bulk actions. Currently I'm not working on that project anymore, but I've developed the basic batch functionality in a few days work. I would love to do a UI/UX/mock-up on how this could work. 
     

  7. On 6/3/2019 at 7:52 PM, bernhard said:

     That sounds like an admin view permission would make sense. The problem with this approach (which I also took for my crm) is that it is inconsistent with how the pw permissions work.

    I've had to correct myself we didn't even hook, but use the "What roles can view and/or edit this field?" checkboxes and the Access Toggle "Show field in page editor if viewable but not editable (user can see but not change)". We've created a process module which listed all the fields and the corresponding settings to keep an overview on all the settings of the fields. Also we made it easy to bulk edit these field settings/permissions. That being said I doubt if I understand your question right since we already have view/not-edit. We only used hooks to change the output of the fields. Apologies, these kind of requirements can be hard to understand. I think I'm understanding your need since to want view not edit permission on a page level? 

    So to summarise: we didn't need that kind of permission, but rather a per field permissions which is already available.

    • Thanks 1
  8. Quote

    Maybe we don't need a new permission and could just add a new admin process like ProcessPageAdminView that lists all fields and their content but in a read-only state?

    We've done this before by using a hook to switch a field to readonly based on the role. It is not that hard to set-up imho. In that particular set-up we had like 20 roles and a lot of permissions so adding another role/permission did not feel right especially since the roles reflected the clients organization structure. Or even replace the fieldgroup with your own markup.

  9. Ah, the good old -dev approach. That might work here too. I used to have it everywhere, but I've switched to more generic config.php which reads a config.ini which is outside my version control. The big disadvantage here is when you have a lot of customisations in your config.php. Thanks for reminding me.

  10. How do you guys handle developing on local machines regarding Multisite? Often I download the production database and I have different config.php, but I'm starting to dislike that approach ? I can off course put all the environment stuff in an .ini and read with parse_ini. 

    $config->MultisiteDomains = array(
        'www.realdomain.com' => array(
                'root' => 'www.realdomain.com',
                'http404' => 1045
            ),
        'realdomain.localhost' => array(
                'root' => 'realdomain.localhost',
                'http404' => 1045
            ),
        'www.anotherrealdomain.com' => array(
                'root' => 'www.anotherrealdomain.com',
                'http404' => 1046
            ),
        'anotherrealdomain.localhost' => array(
                'root' => 'anotherrealdomain.localhost',
                'http404' => 1046
            ),
      );

    I have a lot of domains in the multisite. Would love to hear your approaches.  

×
×
  • Create New...